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 085898d commit c9dd990Copy full SHA for c9dd990
Basic/while2.py
@@ -0,0 +1,10 @@
1
+# * Written By Codezila.org at 26-03-2020 01:20PM (IST)
2
+#Program for print decimal into binary ,octal and hexadecimal numbers...
3
+num=5
4
+sum=0
5
+i=0
6
+while(i<num):
7
+ sum+=i
8
+ i+=1
9
+ print(i)
10
+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