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 trialkali prasad devarasetti
302 PointsMy code is wrong according to tree house, but i can see the answer when ran in the CMD, can anyone tell me why
Challenge Task 1 of 2 I want to make the email subject one more time, but this time let's use the .format() method for strings.
Go ahead and make your name variable again. Hey, all practice is good practice, right?
MY CODE:
name="kali prasad"
subject="Treehouse loves {}"
subject.format(name)
Can anyone tell me where i am doing wrong
```strings.py
name="kali prasad"
subject="Treehouse loves {}"
subject.format(name)
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsYou are very close. Combine your last two lines into one statement by adding the format
method directly to the string.
Post back if you need more help. Good luck!
kali prasad devarasetti
302 Pointskali prasad devarasetti
302 PointsThanks for helping out.