C-18-Q067mediumsingle_mcq
The condition that triggers the continue statement to skip a number is:
The condition that triggers the continue statement to skip a number is:
- a
if num == 0: - b
if num == 4: - c
if num > 4: - d
if num != 4:
The condition that triggers the continue statement to skip a number is:
if num == 0:if num == 4:if num > 4:if num != 4: