Ejercicio
Forma Triángulo
Objectivo
Desarrolla un programa Python que solicite al usuario un símbolo y un ancho, y muestre un triángulo de ese ancho utilizando ese símbolo para la parte interna, como en este ejemplo:
Ingrese un símbolo: 4
Ingrese el ancho deseado: 5
44444
4444
444
44
4
Ejemplo de ejercicio de Python
Mostrar código Python
# Prompt the user for a symbol and width
symbol = input("Enter a symbol: ")
width = int(input("Enter the desired width: "))
# Display the triangle with the given symbol and width
for i in range(width, 0, -1):
print(symbol * i)
Output
Case 1:
Enter a symbol: 4
Enter the desired width: 5
44444
4444
444
44
4
Case 2:
Enter a symbol: *
Enter the desired width: 3
***
**
*
Código de ejemplo copiado
Comparte este ejercicio de Python