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