python-mastery/stock.py
2023-12-10 16:08:15 -06:00

15 lines
257 B
Python

from structure import Structure
class Stock(Structure):
_fields = ('name', 'shares', 'price')
@property
def cost(self):
return self.shares * self.price
def sell(self, nshares):
self.shares -= nshares
Stock.create_init()