question archive (1) Build the ItemToPurchase class with the following specifications: Attributes (3 pts) item_name (string) item_price (float) item_quantity (int) Default constructor (1 pt) Initializes item's name = "none", item's price = 0, item's quantity = 0 Method print_item_cost() Ex

(1) Build the ItemToPurchase class with the following specifications: Attributes (3 pts) item_name (string) item_price (float) item_quantity (int) Default constructor (1 pt) Initializes item's name = "none", item's price = 0, item's quantity = 0 Method print_item_cost() Ex

Subject:Computer SciencePrice:8.99 Bought8

(1) Build the ItemToPurchase class with the following specifications:

  • Attributes (3 pts)
    • item_name (string)
    • item_price (float)
    • item_quantity (int)
  • Default constructor (1 pt)
    • Initializes item's name = "none", item's price = 0, item's quantity = 0
  • Method
    • print_item_cost()


Ex. of print_item_cost() output:

Bottled Water 10 @ $1 = $10

(2) In the main section of your code, prompt the user for two items and create two objects of the ItemToPurchase class. (2 pts)

Ex:

Item 1
Enter the item name:
Chocolate Chips
Enter the item price:
3
Enter the item quantity:
1

Item 2
Enter the item name:
Bottled Water
Enter the item price:
1
Enter the item quantity:
10


(3) Add the costs of the two items together and output the total cost. (2 pts)

Ex:

TOTAL COST
Chocolate Chips 1 @ $3 = $3
Bottled Water 10 @ $1 = $10

Total: $13

272880.1455326

LAB ACTIVITY

16.31.1: LAB*: Warm up: Online shopping cart (Part 1)

# Type code for classes here

if __name__ == "__main__":

 

# Type main section of code here

Option 1

Low Cost Option
Download this past answer in few clicks

8.99 USD

PURCHASE SOLUTION

Option 2

Custom new solution created by our subject matter experts

GET A QUOTE

rated 5 stars

Purchased 8 times

Completion Status 100%