导入函数 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 142 点赞 2 评论 215 浏览