Ejercicio
Estilos De Presentación De Datos
Objectivo
Desarrolla un programa Python que le pida al usuario un número y lo muestre cuatro veces seguidas, separado por espacios, y luego cuatro veces en la siguiente fila sin ningún espacio. Debes hacerlo dos veces: primero usando print() y luego usando el formato de cadena.
Ejemplo:
Ingresa un número: 3
3 3 3 3
3333
3 3 3 3
3333
Ejemplo de ejercicio de Python
Mostrar código Python
# Prompt the user to enter a number
num = input("Enter a number: ")
# Display the number four times in a row, separated by spaces, using print()
print(num, num, num, num)
# Display the number four times in a row, without spaces, using print()
print(num * 4)
# Display the number four times in a row, separated by spaces, using string formatting
print(f"{num} {num} {num} {num}")
# Display the number four times in a row, without spaces, using string formatting
print(f"{num * 4}")
Output
Enter a number: 3
3 3 3 3
3333
3 3 3 3
3333
Código de ejemplo copiado
Comparte este ejercicio de Python