python-mastery/stock.py
2023-12-03 23:14:51 -06:00

13 lines
236 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