试试下面的代码,这会给你一个从 0 到 3(不包括)的范围,然后用 i 迭代 my_list。my_list = [1,2,3]for i in range(0,len(my_list)): print(my_list[i+1])因此,您将获得预期的结果23Traceback (most recent call last): File "<stdin>", line 2, in <module>IndexError: list index out of rangelist index out of range 相当于java index out of bound error