Skip to content

Commit 0d0b80f

Browse files
second commit
1 parent e947c6d commit 0d0b80f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Basic/While.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
i=1
2-
while(i<8):
1+
# * Written By Codezila.org at 26-03-2020 12:06PM (IST)
2+
i=1 #initialization
3+
while(i<8): #condition with expression
34
print(i)
45
i+=1

0 commit comments

Comments
 (0)