-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathforloop.py
More file actions
50 lines (34 loc) · 729 Bytes
/
forloop.py
File metadata and controls
50 lines (34 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#For loop
fruits = ["apple", "banana", "cherry"]
for x in fruits:
print(x)
#Looping Through a String
for x in "happy_coding01":
print(x)
#break Statement
fruits = ["apple", "banana", "cherry"]
for x in fruits:
print(x)
if x == "banana":
break
#continue Statement
fruits = ["apple", "banana", "cherry"]
for x in fruits:
if x == "banana":
continue
print(x)
#range() function
for x in range(6):
print(x)
#start parameter
for x in range(2, 6):
print(x)
#Increment the sequence
for x in range(2, 30, 3):
print(x)
#Nested loop
adj = ["red", "big", "tasty"]
fruits = ["apple", "banana", "cherry"]
for x in adj:
for y in fruits:
print(x, y)