交換變數
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)