Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created March 9, 2022 07:00
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/3ee07cbefb2321e623c644aede169ec7 to your computer and use it in GitHub Desktop.
Save codecademydev/3ee07cbefb2321e623c644aede169ec7 to your computer and use it in GitHub Desktop.
Codecademy export
# Your code below:
toppings = ["pepperoni", "pineapple", "cheese", "sausage", "olives", "anchovies", "mushrooms"]
prices = [2, 6, 1, 3, 2, 7, 2]
num_two_dollar_slices = prices.count(2)
print(num_two_dollar_slices)
num_pizzas = len(toppings)
print("We sell" + str(num_pizzas) + "different kinds of pizza!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment