使用引數定義函式
引數在函式名後面的括號中定義:
def divide(dividend, divisor): # The names of the function and its arguments
# The arguments are available by name in the body of the function
print(dividend / divisor)
函式名稱及其引數列表稱為函式的簽名。每個命名引數實際上是函式的區域性變數。
呼叫函式時,通過按順序列出引數值來為其提供值
divide(10, 2)
# output: 5
或使用函式定義中的名稱以任何順序指定它們:
divide(divisor=2, dividend=10)
# output: 5