标签: python
我试图在python中通过引用执行传递,但它无法正常工作
def fun(x,y,z): x=5 y=5 z=6 x=1 y=2 z=3 fun(x,y,z) print(x,y,z)
我得到的输出是
(1, 2, 3)
我期望的输出是
(5, 5, 6)