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 (2015) Python Data Types String Formatting

ravi parekh
PLUS
ravi parekh
Courses Plus Student 160 Points

what am i missing

need help

strings.py
name="ravi"
subject= "treehouse loves {}"
print(subject.format(name))

2 Answers

honestly that works perfectly in a python emulator. It's probably just the way the challenge is programmed that it is giving you issues. Either move the .format() up to the subject variable or get rid of the curly braces and do some string concatenation on the print statement.

Julian Gutierrez
Julian Gutierrez
19,201 Points

ravi parekh for future reference; there is no need to start another post if you are having issues with the same question. Although you are getting closer you still need to review the syntax for the .format method. There is also no need to use print.

name = "Ravi"
subject = "Treehouse loves {}".format(name);