Python 关键字
例如:
定义并执行一个函数:
def my_function(): print("Hello from a function") my_function()
def关键字用于创建(或定义)函数。
def
Python函数教程