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 If, Else and Elif

Where can I find the lecture of using format?

I can't remember anything about how to use the format in python. Where can I find more information or the original lecture on how to use that ?

2 Answers

Steven Parker
Steven Parker
230,178 Points

I suggest going directly to the The String format() Method page in the official Python documentation. It's pretty simple, they describe it with just a few short paragraphs and some examples.

While you're at it, you might want to look at Formatted String Literals (also called "f-strings"), they do much the same thing but with a more compact syntax.

omg, thank you so much! I'm VERY new to this and I didn't even know such a thing existed. Still learning this website as well as learning the python language. :)

Steven Parker
Steven Parker
230,178 Points

The :d is a Format Specification, and :d explicitly outputs as a decimal (base 10) number.

Glad I could help. You can mark a question solved by choosing a "best answer".
And happy coding!

In the string format() method page 7.1.2, what does the d represent ?? ( in the 5th yellow section)