Print * Pattern in Python
Advertisements
Print Star Pattern in Python
You can write this program using for loop and while loop. Follow same concept like C programming only change syntax.
Print Triangle of Star in Python
for g in range (6,0,-1): print(g * ' ' + (6-g) * '*')
Output
* * * * * * * * * * * * * * *
Print * Pattern in Python
for i in range (1,6): for j in range (5,i-1,-1): print "*", print
Output
* * * * * * * * * * * * * * *
Google Advertisment