Python Quiz Ifelse
# Python Quiz - Conditionals and Loops
(#)
if None: print("Hello")
What is the output of the above code?
In an if...elif...else structure, only one block of statements is executed?
for i in [1, 0]: print(i+1)
What is the output of the above code?
* [[2, 1]](#)
In Python, can `for` and `while` loops have an `else` clause?
i = sum = 0while i <= 4: sum += i i = i+1print(sum)
What is the output of the above code?
while 4 == 4: print('4')
What is the output of the above code?
Is `for` better than `while` when iterating over a sequence (e.g., a list)?
Which of the following descriptions is correct?
for char in 'PYTHON STRING': if char == ' ': break print(char, end='') if char == 'O': continue
What is the output of the above code?
Which of the following descriptions about `pass` is correct?
(#)(#)(#)
if None: print("Hello")for i in [1, 0]: print(i+1)i = sum = 0while i <= 4: sum += i i = i+1print(sum)while 4 == 4: print('4')for char in 'PYTHON STRING': if char == ' ': break print(char, end='') if char == 'O': continue
[ Python Quiz](#)
YouTip