编程语言
首页 > 编程语言> > python报错IndexError: string index out of range

python报错IndexError: string index out of range

作者:互联网

python报错IndexError: string index out of range

代码如
运行结果如图
原因:
当n=len(s)时,如图代码n值为6,但s索引最大为5,等于6的情形并不存在,所以超出索引范围。
故删除“=”即可。
正确代码如图

标签:index,IndexError,string,python,报错,out
来源: https://blog.csdn.net/m0_49392136/article/details/112493094