Very new to coding, so I could be missing something basic. On a lesson about the print function, we learned this to be a valid method:
today_price = 1100
yesterday_price = 1000
print(f"Today's price: {today_price}, yesterday's price: {yesterday_price}")
When I put that in however, I recieve 'SyntaxError: Invalid Syntax' with and arrow pointed to my last double quote.
Any ideas what this could be? This is the example given in the lesson and is copied and pasted from class notes.