摘要: Python语言特性 1 Python的函数参数传递 看两个例子: 1 2 3 4 5 a = 1 def fun(a): a = 2 fun(a) print a # 1 1 2 3 4 5 a = 1 def fun(a): a = 2 fun(a) print a # 1 1 2 3 4 5 阅读全文
posted @ 2018-09-01 13:24 残风卷云 阅读(199) 评论(0) 推荐(0)