python 裝飾器 被裝飾的函數存在參數的情況

‘’‘裝飾器:被裝飾的函數存在參數的情況’’’ ‘’‘在inner函數內部需要傳參,以便運行被裝飾的函數’’’ def warp(func): def inner(total): print(‘驗證’) func(total) return inner @warp def cost(total): print(‘總付款金額:%s’%total) print(‘總付款金額:’,total) if n
相關文章
相關標籤/搜索