Vidyalelo
Python · Q33

Python Loops and Conditionals: MCQs for Exam Readiness

Programming · Python · question 33

Q33

What will be the output of the following Python code? for i in range(10): if i == 5: break else: print(i) else: print("Here")

A.
0 1 2 3 4 Here
B.
0 1 2 3 4 5 Here
C.
0 1 2 3 4
Answer
D.
1 2 3 4 5

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board