I am fairly new to Python, I have just finished setting it up on Visual Studio Code, and chose the right course..
yet with the following exercise i got a syntax invalid error,
my_name = "First Name"
print(f"My name is{my_name}.")
what am I messing?
The error:
File "c:\Users\Lenovo\Desktop\Pie\Hello.py", line 2
print(f"Let's talk about {my_name}.")
^
SyntaxError: invalid syntax