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 Lassen-Diesen
184 Points.format method for strings
Hi there, I would appreciate some help on this question, I'm studying Python Basics.Thanks David
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?
1 Answer
Brandon Oakes
Python Web Development Techdegree Student 11,501 PointsThe question is asking you to make your name into a variable.
so we will call our variable name and lets make it equal to David
name = "David"
the quotes are telling python that you want the variable(name) to be equal to the string("David")
so if you printed(name) you would get "David"
Put the following in and it should work for you: name = "David"
David Lassen-Diesen
184 PointsDavid Lassen-Diesen
184 PointsThank you