神奇的Python代码

1 def f(arg=i):
2    print(arg)
3 
4 i = 6
5 f()
6 i = 7
7 f(i)

输出结果是:

7
7

 

posted @ 2018-03-29 20:16  何大卫  阅读(292)  评论(0编辑  收藏  举报