My break
function is not working even though it is in the loop. Please, someone, explain in detail, because I'm new to Python.
q1 = input('want a question?: ')
if q1 == 'yes':
print("let's get started!, press enter")
a1 = input()
else:
print('why did you even start me ?!')
break
Here I expect break
to stop the program from going any further.