Toggle navigation
English
Chinese
Python Sandbox
Please refer to
this tutorial
to find more details on the following codes.
# # Logical(Boolean) variables have values True or False # x=7 y= x > 0 print(y) z= x < 0 print(z)
Run
List