导入函数 pizza.pydef make_pizza(size, *toppings): print("Making a " + str(size)+ "-inch pizza with the following toppings:") for topping in toppings: print("- " + topping)def test_def(size... Python 2023-12-14 42 点赞 0 评论 63 浏览