Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Note:Do not use any built in function solve the problems in Python with proper indented block also provide screenshot of the code and its output

Note:Do not use any built in function solve the problems in Python with proper indented block also provide screenshot of the code and its output

Write a python program that will take input from the user until the user gives STOP as input. In every line the user will provide input as follow: [Brand Name] [PRICE] Your task is to create a dictionary where the brands name will be key and the value will be a list of that brands watches ID. ID generate process: FirstTwoLetterOfBrand_Price_inputNo. Finally print the dictionary. Sample Input 1: LENOVO 52000 DELL 65000 ASUS 80000 LENOVO 90000 DELL 70000 STOP Sample Output 1: {'LENOVO': ['LE_52000_1', 'LE_90000_4'], 'DELL': ['DE_65000_2', 'DE_70000_5'], 'ASUS': ['AS_80000_3']} Sample Input 2: MACBOOK 120000 HP 60000 DELL 55000 HP 70000 MACBOOK 150000 STOP Sample Output 2: {'MACBOOK': ['MA_120000_1', 'MA_150000_5'], 'HP': ['HP_60000_2', 'HP_70000_4'], 'DELL': ['DE_55000_3']}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Introductory Relational Database Design For Business With Microsoft Access

Authors: Jonathan Eckstein, Bonnie R. Schultz

1st Edition

1119329418, 978-1119329411

More Books

Students also viewed these Databases questions