def display_full_email(self):
self.mark_as_read()
print(‘\n— Email —’)
print(f’From: {self.sender.name}‘)
print(f’To: {self.receiver.name}’)
print(f’Subject: {self.subject}‘)
print(f"Received: {self.timestamp.strftime(’%Y-%m-%d %H:%M’)}")#???
print(f’Body: {self.body}‘)
print(’------------\n’)
I was in a middle of the workshop when I realized the block
print(f"Received: {self.timestamp.strftime(‘%Y-%m-%d %H:%M’)}")#??? would’t work with single quotation mark but would work with double. When single mark is used the output is unmatched (
