the-honk/school/a-level/Y13 2021-2023/Homework/OOP 2 - Shopping Basket/Item.py
2023-01-26 13:04:21 +00: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