Python 默认参数值
默认参数值
以下示例演示如何使用默认参数值。
如果我们不带参数调用函数,它将使用默认值
示例
def my_function(country = "Norway")
print("我来自 " + country)
my_function("Sweden")
my_function("India")
my_function()
my_function("Brazil")
自己尝试 »
以下示例演示如何使用默认参数值。
如果我们不带参数调用函数,它将使用默认值
def my_function(country = "Norway")
print("我来自 " + country)
my_function("Sweden")
my_function("India")
my_function()
my_function("Brazil")
自己尝试 »
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]