摘要: input=333 def func(): input=444 func() print(input) 答:func() ——> def func(): 代码块 ——> 局部变量input = 444 ——> print(input) 全局变量 input = 333(打印333) def func 阅读全文
posted @ 2020-03-19 18:49 pythoner_wl 阅读(84) 评论(0) 推荐(0) 编辑