python之函数二
摘要:
global和nonlocal关键字的使用 # x = 111 # # # def index(): # # 局部修改全局的变量 # global x # x = 222 # # # index() # print(x) # name_list = [11, 22] # # # def index( 阅读全文
posted @ 2022-01-07 19:19 Hzangyao 阅读(25) 评论(0) 推荐(0) 编辑