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 trialryan schuck
1,887 Pointsnot sure what I am missing here
where do i start
name = "Ryan"
title = "Treehouse loves {}".format(name)
1 Answer
Jennifer Nordell
Treehouse TeacherHi there! You're doing just terrific! Your syntax is spot on. However, the challenge explicitly asks you to make the second variable named subject
, but you've named it title
. This is causing the challenge to fail as it cannot find the variable it's looking for.
If I simply change title
to subject
, your code passes!
Going forward it's important to note that challenges are extremely strict and expect instructions to be followed to the letter. This include variable names, and in some cases, spelling, punctuation, capitalization, and even spacing!
Happy coding!