Ось мій Transaction
клас:
class Transaction(object):
def __init__(self, company, num, price, date, is_buy):
self.company = company
self.num = num
self.price = price
self.date = datetime.strptime(date, "%Y-%m-%d")
self.is_buy = is_buy
І коли я намагаюся запустити date
функцію:
tr = Transaction('AAPL', 600, '2013-10-25')
print tr.date
Я отримую таку помилку:
self.date = datetime.strptime(self.d, "%Y-%m-%d")
AttributeError: 'module' object has no attribute 'strptime'
Як я можу це виправити?
from datetime import datetime