交换某两个变量的值
def demo(n): def inner(x, y): print(x, y) x, y = y, x print(x, y) return inner @demo def func(p): print(p) x = input("请输入第一个数字:") y = input("请输入第二个数字:") func(x, y)
输出结果:
请输入第一个数字:3.8 请输入第二个数字:2+3j 3.8 2+3j 2+3j 3.8 Process finished with exit code 0
原文:https://www.cnblogs.com/hrv5/p/12003851.html