Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created April 18, 2020 07:57
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/bf3ddbdd0bb6f9f8c5f5f2b1703e9c4a to your computer and use it in GitHub Desktop.
Save codecademydev/bf3ddbdd0bb6f9f8c5f5f2b1703e9c4a to your computer and use it in GitHub Desktop.
Codecademy export
toppings = ["pepperoni", "pineapple", "cheese", "sausage", "olives", "anchovies", "mushrooms"]
prices = [2 , 6 , 1 , 3 , 2 , 7 , 2]
num_pizzas = len(toppings)
print("We sell " + str(num_pizzas) + " different kind of pizza!")
pizzas = list(zip(prices, toppings))
print(pizzas)
pizzas_sorted = sorted(pizzas)
cheapest_pizza = pizzas_sorted[0]
priciest_pizza = pizzas_sorted[-1]
three_cheapest = pizzas_sorted[0:3]
print(three_cheapest)
num_two_dollar_slices = pizzas_sorted.count(2)
print(pizzas_sorted)
print(num_two_dollar_slices)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment