-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPyForLoopstest.txt
More file actions
202 lines (133 loc) · 4.75 KB
/
PyForLoopstest.txt
File metadata and controls
202 lines (133 loc) · 4.75 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
Loops
Sometimes, you need to perform code on each item in a list. This is called
iteration, and it can be accomplished with a while loop and a counter variable.
For example:
words = ["hello", "world", "spam", "eggs", "জমজ"]
counter = 0
max_index = len(words) - 1
while counter <= max_index:
word = words[counter]
print(word + "!")
counter = counter + 1
Result:
>>>
hello!
world!
spam!
eggs!
'জমজ!
>>>
The example above iterates through all items in the list, accesses them using
their indices, and prints them with exclamation marks.
for Loop
Iterating through a list using a while loop requires quite a lot of code, so Python provides the for loop as a shortcut that accomplishes the same thing.
The same code from the previous example can be written with a for loop, as follows:
words = ["hello", "world", "spam", "eggs"]
for word in words:
print(word + "!")
and
letters = ['a', 'b', 'c']
for l in letters:
print(l)
Result:
>>>
hello!
world!
spam!
eggs!
and
a
b
c
>>>
The for loop in Python is like the foreach loop in other languages.
for Loops
The for loop is commonly used to repeat some code a certain number of times.
This is done by combining for loops with range objects.
for i in range(5):
print("hello!")
and
for i in range(5):
print("hello!")
for i in range(5):
print (i)
for i in range(5):
print ("i")
Result:
>>>
hello!
hello!
hello!
hello!
hello!
and
hello!
hello!
hello!
hello!
hello!
0
1
2
3
4
i
i
i
i
i
>>>
to create a for loop that prints only the even values in the range:
for i in range(0, 20, 2):
print(i)
result:
>>>
0
2
4
6
8
10
12
14
16
18
You don't need to call list on the range object when it is used in a for loop,
because it isn't being indexed, so a list isn't required.
for i in range(10):
if not i % 2 == 0:
print(i+1)
and
while False:
print("Looping...")
Result
>>>
2
4
6
8
10
and
No output
>>>
print the first element of the list, if it contains even number of elements.
list = [1, 2, 3, 4]
if len(list) % 2 == 0:
print(list[0])
and
letters = ['x', 'y', 'z']
letters.insert(1, 'w')
print(letters[2])
and
list = [1, 2, 3]
for var in list:
print(var)
>>>
1
and
y
and
1
2
3
>>>