Toggle navigation
English
Chinese
Python Sandbox
Please refer to
this tutorial
to find more details on the following codes.
# # Here the condition is always 'True' # i=0 while True: i=i+1 if i==4: break print("5 times", i, "is", 5*i)
Run
List