python传递实参说明
1、Python允许函数从调用语句中收集任意数量的实际参数。
2、在形参名前加一个星号*,表示创建一个名为形参的空列表,以存储任意数量的实参。
python传递实参实例
# 传递任意数量的实参 #形参名 *toppings 中的 星号 让Python创建一个名为 toppings 的空元组,并将收到的所有值封装到元组中。 def make_pizza(size, *toppings): # 若是接受不同类型的实参,必须在函数定义中将接纳任意数量的形参放在最后面。 # Python 先匹配位置实参和关键字实参,再将余下的实参收集到最后一个形参中。 '''概述要制作的比萨''' print(f"\nMaking a {size}-inch pizza with the following toppings:") for topping in toppings: print(topping) make_pizza('16', 'mushrooms', 'green peppers') # >>> Making a 16-inch pizza with the following toppings: # >>> mushrooms # >>> green peppers
神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试