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 (Retired) Things That Count Things That Count

days_alive.py, I tried task 3 about 20 different ways and it won't work. I don't know if I am using the {} correctly.

I do not know how to insert a variable into a string using the {}.

2 Answers

Sam,

Check out the Python documentation for some examples on how to use the string formatting methods!

https://docs.python.org/2/library/string.html#format-examples (For Python 2.7)

https://docs.python.org/3/library/string.html#format-examples (For Python 3.4 - the one Treehouse uses!)

Thank you for pointing me in the direction of that documentation. I will need to come back to this because that is a lot to learn in one sitting.

Hi Sam,

Here is the video that covers String Formatting.

Cheers

Thank you, that worked. I just needed to watch the video and follow the procedure.