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 69fd175 commit 160a434Copy full SHA for 160a434
For.py
@@ -0,0 +1,31 @@
1
+name=["raja","kumar","omkar"]
2
+for i in name:
3
+ print(i)
4
+
5
+for i in "raja":
6
7
8
9
10
+ if i=="kumar":
11
+ break
12
13
14
15
16
+ continue
17
18
+for i in range(1):
19
20
21
+for i in range(2,9):
22
23
24
+for i in range(0,100,25):
25
26
27
+int=["first","middle","last"]
28
29
30
+ for j in int:
31
+ print(1,j)
0 commit comments