[Solved]00 Assignment Part 1 Write Class Named Retailltem Holds Data Item Retail Store Class Store Q37265023

Python program
00 Assignment -Part 1 Write a class named Retailltem that holds data about an item in a retail store. The class should store the following data in attributes: item description, units in inventory, and price. Make sure you write appropriate accessor and mutator methods as well as the _str method needed to print out the information about the stores retail inventory. Once you have written the class, write a program that creates three Retailitem objects and stores the following data in them: Price 59.95 34.95 24.95 Units in Inventory 12 40 20 Description acket Designer]eans Item #1 Item #2 Item #3 Shirt The output of your test program will look something like this: Retail Item 1: Description: Jacket Units in inventory: 12 Price:$59.95 Retail Item 2: Description: Designer Jeans Units in inventory: 40 Price: $34.95 Retail item 3: Description: Shirt Units in inventory: 20 Price: $24.95 Show transcribed image text 00 Assignment -Part 1 Write a class named Retailltem that holds data about an item in a retail store. The class should store the following data in attributes: item description, units in inventory, and price. Make sure you write appropriate accessor and mutator methods as well as the _str method needed to print out the information about the stores retail inventory. Once you have written the class, write a program that creates three Retailitem objects and stores the following data in them: Price 59.95 34.95 24.95 Units in Inventory 12 40 20 Description acket Designer]eans Item #1 Item #2 Item #3 Shirt The output of your test program will look something like this: Retail Item 1: Description: Jacket Units in inventory: 12 Price:$59.95 Retail Item 2: Description: Designer Jeans Units in inventory: 40 Price: $34.95 Retail item 3: Description: Shirt Units in inventory: 20 Price: $24.95
Expert Answer
Answer to 00 Assignment -Part 1 Write a class named Retailltem that holds data about an item in a retail store. The class should s… . . .
OR

