KoderPlace
PostCode
Blog
Sign in
KoderPlace
KoderPlace
PostCode
Blog
Login
1 Searches Found
Python Programming Pattern Code Samples
Post Code Samples
Filters
Search Language
Search Tags
Apply
Python program to print pattern
Ramya
| 5 years, 4 months
for i in range (6,1,-1): for j in range (i): print ("*",end= "")
python
pattern