Font size
WorksheetsPYTHON (FOR LOOP)
Total questions: 10
Worksheet time: 13mins
Choose the correct output of the following code.
for i in range(10,15):
print(i)
10
11
12
13
14
10
11
12
13
14
15
11
12
13
14
Error
What is the output of the following:-
x = "123"
for i in x:
print("a")
x
1
a
1
2
3
x
1
2
3
a
a
a
Q3. Write a for loop so that every item in the list is printed.
lst=["koala", "cat", "fox", "panda", "chipmunk", "sloth", "penguin", "dolphin"]
Q4. What is the output of the following:-
print(list(range(10)))
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
[1,2,3,4,5,6,7,8,9,10]
[2,3,4,5,6,7,8,9,10,11]
[0,1,2,3,4,5,6,7,8,9,10]
Choose the correct answer
for i in "python":
print(i, end=='?')
Error
p?
y?
t?
h?
o?
n?
p?y?t?h?o?n?
both b and c
Find the error and correct it
i=2
for x in (i):
x+=1
print(x)
What is for loop.
What will be the output of the following Python code?
x = 'abcd'
for i in range(len(x)):
print(i)
1234
abcd
0123
error
What will be the output of the following Python code?
d = {0: 'a', 1: 'b', 2: 'c'}
for x in d.values():
print(d[x])
a b c
0 1 2
error
'a' 'b' 'c'
What is the use of Break statement
