Zeichenketten

Operationen:
>>> "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
"normale" Strings und Unicode-Strings können nahezu beliebig gegeneinander ausgetauscht werden