1. 程式人生 > >報錯:TypeError: 'NoneType' object is not callable問題解決

報錯:TypeError: 'NoneType' object is not callable問題解決

報錯:TypeError: ‘NoneType’ object is not callable問題解決方法

def dec(function):
    print("start...")
    function()
    print("end...")
#修飾器
@dec
def say():
    print("say...")
#執行報錯:TypeError: 'NoneType' object is not callable
say()
# 解決方法:呼叫函式時去掉括號
say