关键字参数与函数调用有关。在函数调用中使用关键字参数时,调用者通过参数名称标识参数。
由于Python解释器能够使用提供的关键字来将值与参数进行匹配,因此您可以跳过参数或将其乱序放置。您还可以通过以下方式对printme()函数进行关键字调用-
#!/usr/bin/python # Function definition is here def printme( str ): "This prints a passed string into this function" print str return; # Now you can call printme function printme( str = "My string")
输出结果
执行以上代码后,将产生以下结果-
My string
以下示例给出了更清晰的图片。请注意,参数的顺序无关紧要。
#!/usr/bin/python # Function definition is here def printinfo( name, age ): "This prints a passed info into this function" print "Name: ", name print "Age ", age return; # Now you can call printinfo function printinfo( age=50, name="miki" )
输出结果
执行以上代码后,将产生以下结果-
Name: miki Age 50