Toggle navigation
English
Chinese
Python Sandbox
Please refer to
this tutorial
to find more details on the following codes.
# # keyword 'while' runs a loop # until a condition is sartisfied # i=0 while i<10: i=i+1 print("5 times", i, "is", 5*i)
Run
List