怕孤单羊

文章
1
资源
0
加入时间
3年0月9天

导入函数

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...