Toggle navigation
English
Chinese
Python Sandbox
Please refer to
this tutorial
to find more details on the following codes.
def square(x): print("inside") print(i) print(j) return x*x i=2 j=3 print(square(i)) print(square(j))
Run
List