def person(age, **otherInfo): print(age) print(type(otherInfo)) print(otherInfo) person(age=15, sex='male', height=175, weight=56.7, hair='long')
运行结果:
15 <class 'dict'> {'sex': 'male', 'height': 175, 'weight': 56.7, 'hair': 'long'}
def person(age, *other, height): print(age) print(type(other)) print(other) person(15, 'male', 56.7, 'long', height=175)