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 trialDavid Ajuebor
212 Pointsstrings.py
Question 1 of 2 was right. Question 2 0f 2 says that : It looks like question one is not passing. How do I fix this.
strings = "name"
name = "david"
variable = subject
subject = "david"
subject = ("Treehouse loves {david}").
1 Answer
Abdishakur Hassan
3,585 PointsYou just need two lines of code. The name variable and subject variable. And then use format to pass the name to the subject.
here looks the code:
name = 'David'
subject = 'Treehouse loves {}'.format(name)