Toggle navigation
English
Chinese
Python Sandbox
Please refer to
this tutorial
to find more details on the following codes.
# # To print the value of a variable, use its name withoput quote in print statement. # x=1 print(x) print("x") # # Using comma to print multiple things works for variables too. # x=1 print("the value of x is", x, "!!!")
Run
List