[docs] Typo in the Python 2.7 tutorial, section 3.1.2

Ted Clark clar0193 at visi.com
Mon Apr 10 11:56:33 EDT 2017


There's a typo in the Python 2.7 tutorial, section 3.1.2:

>>> 'doesn\'t'  # use \' to escape the single quote...
"doesn't"

should be:

>>> 'doesn\'t'  # use \' to escape the single quote...
'doesn\'t'



More information about the docs mailing list