How do we make this print correctly?

print 'I'm great at this!'print 'I\'m great at this!'print "I'm great at this!"print "I/'m great at this!"

Yes you are! We can escape special characters with a backslash or use double quotes to avoid the problem with ' altogether.

Not quite! We can escape special characters with a backslash or use double quotes to avoid the problem with ' altogether.