これが私の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