Is it a bug of Python or FreeCodeCamp

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 (

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge.

The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.