Skip to content

Commit 1f92703

Browse files
Add files via upload
Use of continue statement in python.
1 parent f983d33 commit 1f92703

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

continue.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
for num in range(1, 6):
2+
if num == 3:
3+
continue
4+
print(num)

0 commit comments

Comments
 (0)