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 (2015) Python Data Types Strings

difference between '' and ""

why does output of 'apple' and "He's doing fine" is different. If both are string only , how does "he's" apostrophe s gets identified and makes a difference in output??

1 Answer

Jesse Schoonveld
Jesse Schoonveld
2,943 Points

In Python using single and double quotations for strings do the same thing. The other part of your question, as to why he's apostrophe has no effect: When you start a string with one type you also end it with that same type. In your example He's apostrophe doesn't effect that string because it's a different type from the one you started that string with.