📜  Python 交换两个变量

📅  最后修改于: 2020-10-30 00:45:40             🧑  作者: Mango

Python程序交换两个变量

变量交换:

在计算机编程中,交换两个变量指定变量值的相互交换。通常通过使用临时变量来完成。

例如:

data_item x := 1
data_item y := 0
swap (x, y)

交换后:

data_item x := 0
data_item y := 1

请参阅以下示例:

# Python swap program 
x = input('Enter value of x: ')
y = input('Enter value of y: ')

# 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))

输出: