Toggle navigation
English
Chinese
Python Sandbox
Please refer to
this tutorial
to find more details on the following codes.
# # It is possible to reassign one kind of variable into another. # i=1 j=1.0 print("i=", i, "j=", j) i=7.77 print("i=", i, "j=", j) j=2 print("i=", i, "j=", j)
Run
List