Toggle navigation
English
Chinese
Python Sandbox
Please refer to
this tutorial
to find more details on the following codes.
# # keyword 'break' allows leaving # the loop early # i=0 while i<10: i=i+1 if(i==4): break print("5 times", i, "is", 5*i)
Run
List