摘要: # 函数是第一类对象:函数名指向的值可以被当中参数传递 # 1.函数名可以被传递 # name = 'jason' # x = name # print(x) # print(id(x)) # def func(): # print('from func') # # print(func) # pr 阅读全文
posted @ 2019-07-14 17:23 Drew-c 阅读(92) 评论(0) 推荐(0)