I'm trying to follow along with a book and it says to put in the following code but it's not working.
The book is: Matthes, Eric. Python Crash Course, 2nd Edition (p. 21). No Starch Press. Kindle Edition.
first_name = "ada"
last_name = "lovelace"
full_name = f"{first_name} {last_name}"
print(full_name)
Error:
line 3
full_name = f"{first_name} {last_name}"
^
SyntaxError: invalid syntax
It is in Python 3.7.3 according to terminal so that's not the issue