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 cbc2647 commit 1bdd696Copy full SHA for 1bdd696
continue.py
@@ -0,0 +1,34 @@
1
+
2
+for count in range(1,11):
3
+ print(count)
4
+ count+=1
5
+ if count==7:
6
+ continue
7
+ print("Hi")
8
+print("Out from loop")
9
10
11
12
+count=1
13
+while count<=10:
14
15
16
17
18
19
20
21
22
+ pass
23
24
25
26
27
28
29
30
31
32
33
+def fun1():
34
0 commit comments