We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0ddcba commit 1b3de4fCopy full SHA for 1b3de4f
making_pizzas.py
@@ -0,0 +1,3 @@
1
+import pizza
2
+
3
+pizza.make_pizza(16, 'pepperoni')
pizza.py
@@ -0,0 +1,5 @@
+def make_pizza(size, *toppings):
+ """Summarize the pizza we are about to make."""
+ print(f"Making a {size}-inch pizza with the folling toppings:")
4
+ for topping in toppings:
5
+ print(f"- {topping}")
0 commit comments