Programming Language Python for Loop MCQ Question #3533
Single Choice Not Set

QWhat will be the output after the following statements?
for i in range(1,5):
    if i == 3:
        continue
    print(i, end=' ')

ID: #3533 Python for Loop MCQ 324 views
Question Info
#3533Q ID
Not SetDifficulty
Python for Loop MCQTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A 1 2 4
  • B 1 2 3 4
  • C 1 2
  • D 1 2 3
Correct Answer

Explanation

1 2 4

Share This Question

Challenge a friend or share with your study group.