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