Python 关键字参数
关键字参数
你也可以使用 键 = 值 语法发送参数。
这样,参数的顺序就不重要了。
示例
def my_function(child3, child2, child1)
print("最小的孩子是 " + child3)
my_function(child1 = "Emil", child2 = "Tobias", child3 = "Linus")
自己试试 »
短语 关键字参数 通常在 Python 文档中缩写为 kwargs。
你也可以使用 键 = 值 语法发送参数。
这样,参数的顺序就不重要了。
def my_function(child3, child2, child1)
print("最小的孩子是 " + child3)
my_function(child1 = "Emil", child2 = "Tobias", child3 = "Linus")
自己试试 »
短语 关键字参数 通常在 Python 文档中缩写为 kwargs。
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]