im an beginner in python. I dont understand the Error. Please can you help me?
import fileinput
ersetzendic = {
"abc":"TESTabc",
"ABC":"TESTABC",
"qwertz":"TESTqwertz",
"wtf":"TESTwtf",
"wtfee":"TESTwtf2"
}
for line in fileinput.input("readme.txt", inplace=True):
for sonicsyntax in ersetzendic:
ersetzendic = ersetzendic[sonicsyntax]
line = line.replace(sonicsyntax,ersetzendic)
print(line, end="" )
TypeError: string indices must be integers