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 42e4bed commit 8e8de74Copy full SHA for 8e8de74
Basic/How-many-stars-print
@@ -0,0 +1,11 @@
1
+# * Written By Codezila.org at 05-04-2020 02:10 PM (IST)
2
+# Program for how many stars are print...
3
+i=8 #value initialization
4
+while(i>0): #condition
5
+ i-=3
6
+ print("*")
7
+ if(i<=2): #again condition
8
+ break
9
+ else:
10
11
+ print('\n\tCode By codezila.org :)\n\tJoin Us On : <github.com/codezila-org>\n\tFor More Mail Us : <contact@codezila.org>')
0 commit comments