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

nathan goel
nathan goel
7,410 Points

What is the difference between using a variable within a string versus using a placeholder and format()?

For example: first_name = "Joe" print("Welcome to treehouse", first_name) versus print("Welcome to treehouse {}".format(first_name))

1 Answer

Steven Parker
Steven Parker
229,771 Points

There's no functional difference, both methods produce the same result. It's simply programmer's choice.

As you progress you'll soon discover even more choices for formatting output. My favorite is called "F-strings", which would look like this:

print(f"Welcome to treehouse {first_name}")
nathan goel
nathan goel
7,410 Points

Thank you for your answer