Exercise: Access dictionary value

Get the price of the pizza from the dictionary and assign it to price_pizza.
menu = {'burger': 5.99, 'pizza': 8.99, 'salad': 6.49} # access dictionary value here...
price_pizza =
print('The pizza costs', price_pizza) # expected: 8.99
Python
Setting up Python environment...
Output