Python Programming - Reverse pyramidal shape star pattern

Published: 30 June 2020
on channel: 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()


On this page of the site you can watch the video online Python Programming - Reverse pyramidal shape star pattern with a duration of hours minute second in good quality, which was uploaded by the user Coding Cup 30 June 2020, share the link with friends and acquaintances, this video has already been watched 46 times on youtube and it was liked by 8 viewers. Enjoy your viewing!