the-honk/school/a-level/y13 2021-2023/Homework/OOP 2 - Shopping Basket/Item.py

8 lines
No EOL
229 B
Python

class Item:
# Constructor
def __init__(self, name, description, price, quantity):
self.name = name
self.description = description
self.price = price
self.initialQuantity = quantity
self.quantity = quantity