'''概念:允许函数调用时参数的顺序与定义时不一致'''def myPrint(str, age): print(str, age)#使用关键字参数myPrint(age = 18, str = "sunck is a good man")