Skip to content
CodeBook
Main Navigation
ToolBox
GitHub
Appearance
GitHub
Menu
Return to top
On this page
Table of Contents for current page
Python函数
#
函数
#
Python
Copy code
def function(): print("hello function")
def function(): print("hello function")
装饰器
#
Python
Copy code
def wrap(): def inner(): print("DecoratorDemo") return inner
def wrap(): def inner(): print("DecoratorDemo") return inner