Python String -Zuordnung nach Index
# Strings are immutable in python, so you cannot insert characters.
# You could do convert it to a list however:
text = "Hello Warld"
text = list(text)
text[7] = "o"
text = "".join(text)
>>>text
"Hello World"
Hecent