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 trialPhillip Bailey
1,822 PointsUsing "string" + variable or "string", variable?
I noticed all of the following prints as I expect.
print("To: ", too_line) print("CC: " + cc_line) print("Hello", "Earth")
Is there any reason to not use the "," to separate two or more things to join? I think I saw it in an example and felt it was much cleaner code. Will using that be problematic in the future or is it another method one can choose to use in their code?
2 Answers
Lucas Garcia
6,529 PointsHello Phillip, I may be wrong but I am pretty certain that the comma is just another formatting style you can use in your prints if you prefer.
makmood
1,629 PointsIf you separate two elements with a comma, Python will automatically add a space between them, like so:
print("Hello", "world.")
--> Hello world.
If you instead use + to separate them, Python will concatenate the two without an added space:
print("Hello" + "world.")
--> Helloworld.