交换变数
Python 基础: 交换变数
一般交换变数
使用 temp 变数储存暂存变数
# Python program to swap two variables
x = 5
y = 10
# create a temporary variable and swap the values
temp = x
x = y
y = temp
print('The value of x after swapping: {}'.format(x))
print('The value of y after swapping: {}'.format(y))
条件式交换变数
使用 变数X,变数Y = 变数Y,变数X
就可以直接交换变数了
x = 5
y = 10
x, y = y, x
print("x =", x)
print("y =", y)