10 lines
211 B
Python
10 lines
211 B
Python
|
# stock.py
|
||
|
|
||
|
class Stock:
|
||
|
def __init__(self, name, shares, price):
|
||
|
self.name = name
|
||
|
self.shares = shares
|
||
|
self.price = price
|
||
|
def cost(self):
|
||
|
return self.shares * self.price
|