Objectivo
Desarrolla un programa Python que solicite al usuario un símbolo y un ancho, y muestre un cuadrado hueco de ese ancho utilizando ese símbolo para el borde exterior, como se muestra en este ejemplo:
Ingrese un símbolo: 4
Ingrese el ancho deseado: 3
444
4 4
444
Ejemplo Ejercicio 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: "))
# Use a while loop to display the hollow square
i = 0
while i < width:
if i == 0 or i == width - 1:
print(symbol * width)
else:
print(symbol + " " * (width - 2) + symbol)
i += 1
Output
Enter a symbol: 4
Enter the desired width: 3
444
4 4
444
Código de Ejemplo copiado
Comparte este ejercicios Python