摘要: 一.函数的对象:# 函数是第一类对象:函数名指向的值可以被当中参数传递# 1.函数名可以被传递 1 name = 'jason' 2 x = name 3 print(x) 4 print(id(x)) 5 6 def func(): 7 print('from func') 8 print(fun 阅读全文
posted @ 2019-07-10 15:22 凯帅 阅读(220) 评论(0) 推荐(0) 编辑