lingojot Oct 15, 2017 08:58AM [#python]i = 0while 1==1:print(i)i = i + 1if i >= 5:print("Breaking")breakprint("Finished")