12 Comments
User's avatar
Patrick's avatar

Just missing the f key in the beginning of the message.

Patricia Toffey's avatar

message = f"Hello, my name is {name} and I am {age} years old."

Ardit Sulce's avatar

Hi Patricia, that's correct!

Adriana Vanegas's avatar

This is my third week learning Python and I was nervous that I wasn't going to be able to answer it, but I did! 🤩 Thanks for the practice!

Ardit Sulce's avatar

Keep on learning, Adriana :)

Harsh Pratap Singh's avatar

Use this --message = f"Hello, my name is {name} and I am {age} years old."

Ardit Sulce's avatar

That would be the correct line. 👍

VINOD VIJAYAN's avatar

The string 'message' is assigned without 'f' prefix. To fix the code, prefix the string with 'f'.

Ardit Sulce's avatar

Yes, that's it.

Tantaluz's avatar

there should be an f after the message = for it to work

Ardit Sulce's avatar

Before the message, to be exact :)