Voici ma Transactionclasse: 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 Et quand j'essaye d'exécuter la datefonction: tr =...