第10行上的TokenError。但是只有9行代码

时间:2019-07-10 17:46:01

标签: python token

据我所知,此代码中没有错误,但是编译器告诉我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:  ")

0 个答案:

没有答案