python 交换变量的值

code

# 用户输入
x = 123
y = 456
# 创建临时变量,并交换
temp = x
x = y
y = temp
print('交换后 x 的值为: {}'.format(x))
print('交换后 y 的值为: {}'.format(y))
# 不使用临时变量
x,y = y,x
print('交换后 x 的值为: {}'.format(x))
print('交换后 y 的值为: {}'.format(y))

 

 

 

 

posted @ 2020-05-03 15:13  anobscureretreat  阅读(241)  评论(0编辑  收藏  举报