Python def 关键字

实例

创建并执行函数:

  1. def my_function():
  2. print("Hello from a function")
  3. my_function()

定义和用法

def 关键字用于创建(或定义)函数。


相关页面

请访问本站的 Python 函数 教程中学习更多有关函数的知识。

分类导航