Objectivo
Desarrolla un programa Python que solicite al usuario que ingrese un número y un ancho, y muestre un cuadrado de ese ancho utilizando ese número como símbolo interno, como se muestra en este ejemplo:
Ingrese un número: 4
Ingrese el ancho deseado: 3
444
444
444
Ejemplo Ejercicio Python
Mostrar Código Python
# Prompt the user to enter a number
num = input("Enter a number: ")
# Prompt the user to enter the desired width
width = int(input("Enter the desired width: "))
# Use a while loop to display the square
i = 0
while i < width:
print(num * width)
i += 1
Output
Enter a number: 4
Enter the desired width: 3
444
444
444
Código de Ejemplo copiado
Comparte este ejercicios Python