I am on day two of starting to learn Python and already got stuck on what will be a really simple problem. I am trying to do an f-string to type out my name but for some reason, it's saying my syntax is invalid. I typed it in exactly how it is in Matthes' book on page 21 and it's still saying my syntax is wrong.
Here is what I have:
first_name = "adrian"
last_name = "lastname"
# having trouble on line 23
full_name = f"{first_name} {last_name}"
print(full_name.title())
Does anyone see something I am not?
Here's a screenshot of the error message: