We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0d77b5 commit 0c12187Copy full SHA for 0c12187
whileExample.py
@@ -0,0 +1,8 @@
1
+print('Start of Prgm')
2
+x = 0
3
+while (x<10):
4
+ print(str(x))
5
+ x = x+1
6
+
7
+print('End')
8
+# 0-9
0 commit comments