1.形参名*toppings 中的星号让Python创建一个名为toppings 的空元组,不管调用语句提供了多少实参,这个形参会将它们统统收入囊中,即:无论几个小料
def make_pizza(size, *toppings):print(f"\n要制作一个{size}-inch的披萨,内含的小料如下:")# 循环输出小料for topping in toppings:print(f"{topping}")make_pizza(16, 'pepperoni')
make_pizza(12, 'mushrooms', 'green peppers', 'extra cheese')
2.形参**user_info 中的两个星号让Python创建一个名为user_info 的空字典,并将收到的所有名称值对都放到这个字典中。
def build_profile(first, last, **user_info):# 把first参数传给键first_nameuser_info['first_name'] = firstuser_info['last_name'] = lastreturn user_infodef receive_sandwich(*sandwichs):print("该三明治中有以下食材:")for sandwich in sandwichs:print(f"{sandwich}")receive_sandwich('egg', 'water', 'peach')
receive_sandwich('book')
receive_sandwich('finger', 'phone', 'shop', 'glasses')