build loop that sto pwith condition code example
Example 1: python get out of loop
while True:
print('I run!')
break
print('Not in loop!')
Example 2: while loop in python for do you want to continue
while input("Do You Want To Continue? [y/n]") == "y":
# do something
print("doing something")