PS C:\Users\94044\Desktop\Python学习> & C:/Users/94044/AppData/Local/Microsoft/WindowsApps/python3.8.exe c:/Users/94044/Desktop/Python学习/study.py 3 3 Traceback (most recent call last): File "c:/Users/94044/Desktop/Python学习/study.py", line 34, in <module> roundfun(0,0,n,m,1) File "c:/Users/94044/Desktop/Python学习/study.py", line 19, in roundfun s[i][j]=num IndexError: list assignment index out of range PS C:\Users\94044\Desktop\Python学习>
时间: 2023-12-15 20:05:17 浏览: 32
学习Python
这个错误是由于您在列表的索引范围之外进行了赋值操作导致的。根据您提供的代码,我注意到在 `roundfun` 函数的第19行发生了错误。您可能需要检查一下在这行代码中使用的索引值 `i` 和 `j` 是否正确,并确保它们在列表的有效范围内。另外,还需要确保列表 `s` 的大小足够容纳要进行赋值的元素。
阅读全文