Will the following program terminate?
balance =
Practice break statement Questions – Will the following program terminate?
balance = 10
while True:
if balance < 9: break
balance = balance – 9
Practice break statement Questions – Will the following program terminate?
balance = 10
while True:
if balance < 9: break
balance = balance – 9