>>> 'hello, world' 'hello, world' >>> 'hello, \'world\'' "hello, 'world'" >>> 'hello, world\n' 'hello, world\n'
>>> "hello, world" 'hello, world' >>> "hello, 'world'" "hello, 'world'" >>> "hello, " "world" 'hello, world'
>>> """Hello, world. ... ... 'Hello, world' gets really boring after a while! ... """ 'Hello, world.\n\n'Hello, world' gets really boring after a while!\n'