You can use an IDE or Jupyter to solve this question. You…
You can use an IDE or Jupyter to solve this question. You are writing a small application to display the prices of the cars when the user enters the car description (in your case the key). 1st step: Create a dictionary object and store the following items in the dictionary. Tesla M3 the price is 42,000 Toyota Spider the price is 153,000 Porsche 911-F1 the price is 340,000 2nd step: Ask the user for an input to select one of the available vehicles in the dictionary to see its price 3rd step: Display the price of the item selected as following “The vehicle you selected Porsche 911-F1 has a price of $350,000”
Read Details