发布时间:2025-12-10 19:42:46 浏览次数:6
python 中 string index out of rangepython中stringindexoutofrange一般都是字符串操作引起的,最典型的:Stringstr=“123456789”;//字符串长度是9StringtempStr=str.substring(0,10);//一定报错:Stringindexoutofrange:10该错误是由于字符串操作过程中抛出StringIndexOutOfBoundsException异常方法调用中遇到该错误也很常见,举例函数返回值只有1个,设置多个参数=该函数返回值或
python 中 string index out of range
一般都是字符串操作引起的,最典型的:
String str = “123456789”;//字符串长度是9
String tempStr = str.substring(0, 10);//一定报错:String index out of range: 10
该错误是由于字符串操作过程中抛出StringIndexOutOfBoundsException异常
方法调用中遇到该错误也很常见,举例函数返回值只有1个,设置多个参数=该函数返回值
或一个参数=有多个返回值的函数 需要加【1】来限定。