La guía paso a paso o código que encontrarás en este artículo es la solución más eficiente y válida que hallamos a esta duda o dilema.
Ejemplo 1: programa de árbol de navidad en python
tree_height =input("Enter the tree height : ")
tree_height =int(tree_height)
spaces = tree_height-1
hashes =1
stump_spaces = tree_height-1while tree_height !=0:for i inrange(spaces):print(' ', end="")for i inrange(hashes):print('#', end="")print()
tree_height -=1
spaces -=1
hashes +=2for i inrange(stump_spaces):print(' ', end="")print('#',end="")
Ejemplo 2: bucle while de pitón del árbol de navidad
*******************************
Comentarios y calificaciones del artículo
No se te olvide dar recomendación a este artículo si lograste el éxito.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)