标签:get friends 第一个 def color other 参数 second pass
""" def getName(): print("name") getName() """ #带参数的函数 """ def set(name,sex,age): print(name,sex,age) set("xiaoming","men",14) set(age="30",sex="man",name="xiaoliang") """ #不定长传参 """def girlFriends(first,second,*other): print("王子川的第一个女朋友事:",first) print("王子川的第er个女朋友事:",second) print(other) pass girlFriends("小芳","张光磊","小薇","小花") """
标签:get friends 第一个 def color other 参数 second pass
原文地址:https://www.cnblogs.com/waox/p/12120527.html