the-honk/school/a-level/Y13 2021-2023/Homework/OOP 2 - Shopping Basket/Item.py
2024-10-09 18:02:48 +01:00

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