首页 > 代码库 > 使用 * 收集位置参数
使用 * 收集位置参数
python中的星号(*)和c/c++是不一样的,和指针没有关系,因为python中没有指针的概念。
1.星号(*)被用在函数内部时,星号(*)将一组可变数量的位置参数集合成参数值的元组。
在下面的例子中,输出的值args就是传入到函数print_args的参数值的元组;
建立一个函数:
def print_args(*args):
print(args)
运行:
print_args("dog","cat","bird")
结果:
(‘dog‘, ‘cat‘, ‘bird‘)
运行:
print_args()
结果:
()
2.如果函数收集有限的参数,那么args会收集剩下的参数,并保存在一个元组中,比如;
def print_left(first,second,*args): print("this is the first one:",first) print("this is the second one:",second) print("all the rest:",args)
运行:
print_left("dog","cat","bird","mouse","fish")
结果:
this is the first one: dogthis is the second one: catall the rest: (‘bird‘, ‘mouse‘, ‘fish‘)
使用 * 收集位置参数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。