여기 내 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