python面试题
Python语言特性1 Python的函数参数传递看两个如下例子,分析运行结果:代码一:a = 1def fun(a): a = 2fun(a)print(a) # 1代码二:a = []de
python面试题