-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython for loop.py
More file actions
71 lines (59 loc) · 1.08 KB
/
python for loop.py
File metadata and controls
71 lines (59 loc) · 1.08 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
'''fruits = ["apple", "banana", "cherry"]
for fruit in fruits:
print(fruit)
print()
print(x)
print()
fruits = ["apple", "banana", "cherry"]
for x in fruits:
print(x)
if x == "banana":
break
print()
fruits = ["apple", "banana", "cherry"]
for x in fruits:
if x == "banana":
break
print(x)
print()
fruits = ["apple", "banana", "cherry"]
for x in fruits:
if x == "banana":
continue
print(x)
print()
#0 to 5
#1 to 6
for x in range(6): #this prints six numbers starting from 0
print(x+2) # 2,3,4,5,6,7
print(x * 3)
print()
for x in range(2, 6):
print(x)
print()
for x in range(2, 30, 3):
print(x)
print()
for x in range(6):
print(x)
else:
print("Finally finished!")
print()
for x in range(6):#this doesnt allow the else statement due to the break
if x == 3: break
print(x)
else:
print("Finally finished!")
print()
adj = ["red", "big", "tasty"]
fruits = ["apple", "banana", "cherry"]
for x in adj: #nested for loop
for y in fruits:
print(x, y)
print()
for x in [0, 1, 2]:
pass
'''
word= 'banana'
for x in range(0,len(word)-1,2):
print(word[x])