def make(*topping,size=16): print(f"制作一个{size}寸的披萨需要的配料:") for i in topping: print(i)
位置参数要放在前面,size只能关键字传参,放在最后