2019-03-29
阅读量:
617
两个变量值用函数互换。
def exc(a,b):
return (b,a)
a=0
b=10
a,b=exc(a,b)
print(a,b)






评论(0)


暂无数据
推荐帖子
2条评论
6条评论
7条评论