Python中怎么写swap()交换函数******Python不需要交换函数swap(),如果要交换a,b的话,只需要使⽤如下语句:
a,b = b,a
即可(因为:Python以引⽤⽅式管理对象,你可以交换引⽤,但通常不能交换内存中的对象值。当然你也不需要这样做。)
在python中应该这样做:
a = 1
b = 2
python怎么读的def swap(t1, t2):
return t2, t1
a,b = swap(a, b) # After this point, a == 2 and b == 1
But there is not way (other than abusing globals or the module
namespace) to do it like this:
不过下⾯这段代码不可能像我们希望的那样⼯作(全局命名空间和局部命名空间是隔离的):
a = 1
b = 2
def swap(t1, t2):
t2, t1 = t1, t2
return
swap(a, b)
# After this point, a == 1 and b == 2. The calling namespace is
# not changed.
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论