Toggle navigation
English
Chinese
Python Sandbox
Please refer to
this tutorial
to find more details on the following codes.
# # Keywords 'if' and 'else' are used to control # of code # condition=True if condition: print("condition is", condition, ". Line 1 is running") else: print("condition is", condition, ". Line 2 is running")
Run
List