'Pococatepetl', "Erste Zeile\nZweite Zeile"
'Pococatepetl'u, "Erste Zeile\nZweite Zeile"u
>>> "Hel"+'lo World' 'Hello World' >>> txt="abcdefgh"; txt[4:6] 'ef' >>> txt[4:] 'efgh' >>> "abcdefgh"[4] 'e' >>> txt[-1] 'h' >>> "spam"*4 'spamspamspamspam' >>> len(txt) 8