摘要: 交换某两个变量的值 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( 阅读全文
posted @ 2019-12-07 22:55 热爱学习的小黄 阅读(256) 评论(0) 推荐(0)