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

8 lines
229 B
Python
Raw Normal View History

2024-10-09 17:02:47 +00:00
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