Python Programming - Reverse pyramidal shape star pattern

Publicado el: 30 junio 2020
en el canal de: Coding Cup
46
8

In this video you learn how to write code of reverse pyramidal shap star pattern in pythen programming


pattern
* * *
* *
*
*
code:

num = int(input("Enter the number of rows "))
for i in range(num,0,-1):
for j in range(0,num-i):
print(end=" ")
for j in range(0,i):
print("*",end=" ")
print()


En esta página del sitio puede ver el video en línea Python Programming - Reverse pyramidal shape star pattern de Duración hora minuto segunda en buena calidad , que subió el usuario Coding Cup 30 junio 2020, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 46 veces y le gustó 8 a los espectadores. Disfruta viendo!