Toggle navigation
English
Chinese
Python Sandbox
Please refer to
this tutorial
to find more details on the following codes.
# # The following code does not exchange x and y. # x=1 y=5 x=y y=x print(x) print(y) # # The following code does # x=1 y=5 store=x x=y y=store print(x) print(y)
Run
List