Boston Python Workshop 7/Friday/Tutorial: Difference between revisions

Content added Content deleted
imported>Jesstess
imported>Jesstess
Line 321: Line 321:
<pre>
<pre>
print "I'm a happy camper"
print "I'm a happy camper"
</pre>

or we can <b>escape</b> the quote with a backslash:

<pre>
print 'I\'m a happy camper'
print 'Ada Lovelace is often called the world\'s first programmer.'
print "Computer scientist Grace Hopper popularized the term \"debugging\"."
</pre>
</pre>