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 52,000 Toyota Spider the price is 163,000 Porsche 911-F1 the price is 350,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”    

You can use an IDE or Jupyter to solve this question.   Plan…

You can use an IDE or Jupyter to solve this question.   Plan to spend 30 minutes on this question.  You can use an IDE or Jupyter to solve this question.  Write code to print the colors in the list using a “for” loop. You have the list as colors = . While being in the “for loop” reading each element from the list; write another nested while loop and print the number 1 through 4.  (No hard coding allowed)    Your output should look like below. red 1 2 3 4 blue 1 2 3 4