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 trialIdrees Richard
166 PointsHi All,What is actually the purpose of the .format () command? I did some researching online and cant seem to understand
I'm not really sure why we actually need to use the .format(books[0])? rather than just printing out books[0]?
Thanks!
2 Answers
Alex Koumparos
Python Development Techdegree Student 36,887 PointsHi Anas,
There are two basic ways of combining some string literal (i.e., hard coded text) and some computed or stored value (e.g., something in a variable):
The first, format()
is used for string interpolation. This allows us to inject some code into a string and have it evaluated at runtime. For example:
my_variable = "world"
print("hello, {}".format(my_variable))
In most cases it is functionally equivalent to the second, string concatenation, using the +
operator:
my_variable = "world"
print("hello, " + my_variable)
and which one you'd use depends on personal preference or house style.
Later on, you'll learn some neat ways that you can use interpolation with tuples and dictionaries that you can't easily replicate with concatenation.
Hope that helps
Cheers
Alex
Idrees Richard
166 PointsThanks Alex!
Grigorij Schleifer
10,365 PointsGrigorij Schleifer
10,365 PointsHey Alex, very nice answer!!! I see a typo in the first print statement though