有關函數名

有關函數名
#函數名func  --> 函數的內存地址
#函數名() -->函數的調用
#函數的內存地址() -->函數的調用
# def func():
#     print(123)
# func()        #函數名就是內存地址
# func2 = func  #函數名能夠賦值
# func2()
# l = [func,func2] #函數名能夠做爲容器類型的元素
# print(l)
# for i in l:
#     i()

# def func():
#     print(123)
# def wahaha(f):
#     f()
#     return f           #函數名能夠做爲函數的返回值
# qqxing = wahaha(func)   # 函數名能夠做爲函數的參數
# qqxing()
相關文章
相關標籤/搜索