Objectivo
Desarrolle un programa Python que le pida al usuario su nombre y talla, y que muestre un rectángulo vacío con él:
Ingrese su nombre: Yo
Ingrese talla: 4
YoYoYoYo
Yo Yo
Yo Yo
YoYoYoYo
(Nota: Los guiones bajos _ no deben mostrarse en la pantalla; su programa debe mostrar espacios en blanco dentro del rectángulo)
Ejemplo Ejercicio Python
Mostrar Código Python
# Prompt the user for their name and the size of the rectangle
name = input("Enter your name: ")
size = int(input("Enter size: "))
# Print the top row of the rectangle
print(name * size)
# Print the middle rows with spaces inside
for i in range(size - 2):
print(name + ' ' * (len(name) * (size - 2)) + name)
# Print the bottom row of the rectangle
if size > 1:
print(name * size)
Output
Enter your name: Yo
Enter size: 4
YoYoYoYo
Yo Yo
Yo Yo
YoYoYoYo
Código de Ejemplo copiado
Comparte este ejercicios Python