据我所知,此代码中没有错误,但是编译器告诉我9行代码中的第10行有错误。我只想知道编译器是否被错误编译,或者是否存在错误而我却没有看到它。
string=""
index=0
def replaceatindex(string,index):
firsthalf=string[:(index-1)]
lasthalf=string[(index+1):]
print firsthalf+"-"+lasthalf
stringinput=input("Give me a string: ")
indexinput=int(input("Give man index: ")