Initial commit
This commit is contained in:
17
Solutions/6_3/stock.py
Normal file
17
Solutions/6_3/stock.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# stock.py
|
||||
|
||||
from structure import Structure
|
||||
|
||||
class Stock(Structure):
|
||||
def __init__(self, name, shares, price):
|
||||
self._init()
|
||||
|
||||
@property
|
||||
def cost(self):
|
||||
return self.shares * self.price
|
||||
|
||||
def sell(self, nshares):
|
||||
self.shares -= nshares
|
||||
|
||||
Stock.set_fields()
|
||||
|
||||
Reference in New Issue
Block a user