摘要: 1 global变量 2 x=50 3 def func(): 4 global x 5 print('x is ',x) 6 x=2 7 print('changed global x to ',x) 8 func() 9 print('value of x is',x) 10 11 def say(message,times=1): 12... 阅读全文
posted @ 2018-02-01 09:55 L与S的小甜菜 阅读(122) 评论(0) 推荐(0) 编辑