C-18-Q080mediumsingle_mcq
Without using break, the only other way to leave a while True: loop is to:
Without using break, the only other way to leave a while True: loop is to:
- aRestart the computer
- bMake the condition false (if it depends on a variable)
- cAdd another
while - dUse
print
ব্যাখ্যা
A while True: loop runs forever unless break is used, so the only alternative is to make its controlling condition evaluate to false.