C-18-Q055mediumsingle_mcq
The continue statement in Python is used to:
The continue statement in Python is used to:
- aStop the program completely
- bConditionally or unconditionally repeat a statement or loop
- cDefine a new function
- dPrint a value
ব্যাখ্যা
The continue statement is a loop-control tool that conditionally or unconditionally affects the repetition of statements within a loop. It does not terminate the program, define functions, or print values.