You can use an IDE or Jupyter to solve this question. Spend…
You can use an IDE or Jupyter to solve this question. Spend about 30 minutes on this question. You are writing a small application to display the prices of the TV when the user enters the TV Make (you should display the key which should store the price). 1st step: Create a dictionary object and store the following items in the dictionary. TCL 85 Inch, price=$1,200 Samsung 98-Inch, price=$2,900 Hisense 100, price=$3,100 Using the update method change the price if the Hisense 100 to be $2,990. 2nd step: Ask the user for an input to select one of the available TVs in the dictionary to see its price 3rd step: Display the price of the item selected as following “The price of the TV you selected ‘Hisense 100’ is $2,990.00” You need to upload two files, 1) a .py file and 2) a picture of your running code showing results.