Ejercicio
Rectángulo Vacío
Objectivo
Desarrolla un programa Python que solicite al usuario un símbolo, un ancho y una altura, y muestre un rectángulo hueco de ese ancho y altura utilizando ese símbolo para el borde exterior, como en este ejemplo:
Ingrese un símbolo: 4
Ingrese el ancho deseado: 3
Ingrese la altura deseada: 5
444
4 4
4 4 4
4 4
444
Ejemplo de ejercicio de Python
Mostrar código Python
# Prompt the user to enter a symbol
symbol = input("Enter a symbol: ")
# Prompt the user to enter the desired width
width = int(input("Enter the desired width: "))
# Prompt the user to enter the desired height
height = int(input("Enter the desired height: "))
# Use a while loop to display the hollow rectangle
i = 0
while i < height:
if i == 0 or i == height - 1:
print(symbol * width)
else:
print(symbol + " " * (width - 2) + symbol)
i += 1
Output
Enter a symbol: 4
Enter the desired width: 3
Enter the desired height: 5
444
4 4
4 4
4 4
444
Código de ejemplo copiado
Comparte este ejercicio de Python