摘要: global与nonlocal关键字使用 x = 111 def index(): 局部修改全局变量 需要使用关键字声明 global x x = 222 index() print(x) name_list = ['jason', 'kevin'] def index(): name_list.a 阅读全文
posted @ 2021-11-16 15:04 丶祈安 阅读(62) 评论(0) 推荐(0) 编辑