Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Python Basics (Retired) Ins & Outs Ins & Outs

how do i create a variable named name with my name in it

string formatting

name.py
print("{}what is your name?")
print("faldi")

1 Answer

Ron McCranie
Ron McCranie
7,837 Points

I would suggest going back and reviewing the videos prior to the code challenge. Sometimes it takes a couple of times before you really understand the content.

With that said, I think you're looking for this:

name = 'faldi'

thanks hey