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 trial

Python Python Basics Types and Branching Comparisons

.format. Need more help

Hi. Can you explain about the .format.

Can you give example of how this is used, and the outcome it gives with and without using this

2 Answers

Steven Parker
Steven Parker
229,657 Points

The "format" function replaces tokens ("{}") in a string with value(s) passed to it. For example:

name = "Joe"
print("Hi, my name is {}!".format(name))

The code shown would output this:

Hi, my name is Joe!

You will see plenty more examples in the course(s) as this function is used frequently.

To add to Steven's answer above, the .format() function takes in values. The value in each value in .format() will take on it's corresponding token ("{}"). For example, if there are many tokens, the first value in .format() will replace the first token, the 2nd value will replace the 2nd token, the 3rd value will replace the 3rd token, etc.