We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7b2135 commit 20bb191Copy full SHA for 20bb191
Pyramid.py
@@ -0,0 +1,11 @@
1
+i = 1
2
+while (i<=5):
3
+ print("5"*i)
4
+ i+=1
5
+
6
+j=1
7
+k=4
8
+while (j<=9):
9
+ print(" "*k + "5"* j)
10
+ k = k-1
11
+ j=j+2
0 commit comments