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 String Formatting

Last task on quiz, how is it supposed to look??

really frustrating, this is what have as the code:

name= "steve" treehouse= "Tree" + "house"

i keep getting this wrong, so what is it, i am following the directions..

email_greeting= print ("{} loves {}".format(name, treehouse))

Narek Grigoryan
Narek Grigoryan
717 Points

hello guys! do this code works??? for me its not (:

2 Answers

Seth Reece
Seth Reece
32,867 Points

First, remove print. It's just asking you to assign a variable. Second, read the question again. I made the same mistake the first time. You variable should contain "Treehouse loves someone". P.S. You may find this helpful in the future.. Kenneth's challenges can be challenging. I find it helpful to run them in my own terminal to get a better error description that "Bummer". In this case it worked, then I saw I had the variables reversed.

Thanks! the tip really helped, i had the idea just needed the guidance.