如何在 Python 中定义函数?

如何在 Python 中定义函数?

def my_function(x):
    return x * 2

这段代码定义了一个名为 my_function 的函数,该函数接受一个参数 x,并返回 x 的两倍。

其他定义函数的方法:

  • 使用 def 语句:
def my_function(x):
    return x + 10
  • 使用 function 对象:
function = function(x):
    return x * 2
  • 使用 lambda 表达式:
my_function = lambda x: x * 2

使用函数:

result = my_function(5)
print(result)  # 输出 10

注意:

  • 函数名必须以字母或下划线开头,但不能以数字开头。
  • 函数参数可以是任何类型。
  • 函数可以返回任何类型的值。
相似内容
更多>