Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created November 24, 2020 20:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/31a5185039285e6ec3cb54f9451e612d to your computer and use it in GitHub Desktop.
Save codecademydev/31a5185039285e6ec3cb54f9451e612d to your computer and use it in GitHub Desktop.
Codecademy export
toppings = ['pepperoni', 'pineapple', 'cheese', 'sausage', 'olives', 'anchovies', 'mushrooms']
price = [2, 6, 1, 3, 2, 7, 2]
num_pizzas = len(toppings)
print("We sell " + str(num_pizzas) + " different kinds of pizza!"
pizzas = zip(price, toppings)
print(pizzas)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment