解决:python中出现:list assignment index out of range.或者说如何存储遍历出来的数据
2021/11/8 20:12:24
本文主要是介绍解决:python中出现:list assignment index out of range.或者说如何存储遍历出来的数据,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
出现的bug:
Traceback (most recent call last):
File "E:/testPython/NumPY/test.py", line 67, in <module>
readIp()
File "E:/testPython/NumPY/test.py", line 59, in readIp
iplist[i]=ip
IndexError: list assignment index out of range
这是因为用列表装字典内容
def readIp(): ipfile = 'ip_list.txt' global iplist iplist=[] with open(ipfile, 'r') as file_to_read: for i in range(0,1000): lines = file_to_read.readline() # 整行读取数据 if not lines: break ip=lines.replace('\n',' ') iplist[i]=ip print(iplist[1])
分析:
list assignment index out of range:列表超过限制
一种情况是:list[index]index超出范围
另一种情况是:list是一个空的,没有一个元素,进行list[0]就会出现错误!
解决办法如下:
将iplist=[] 改为:iplist={}
上述内容为本人转载,只是为方便大家学习
本人之前也发现可以用另外一种写法存储数据;例子如下:
b=[] a = np.linspace(1, 132, num=132, endpoint=True, retstep=False, dtype=int) for i in a: b.append(df.iloc[86401*(i-1):86401*i,:])
使用列表存储数据中的切片,挺实用的,欢迎大家采纳!!!
这篇关于解决:python中出现:list assignment index out of range.或者说如何存储遍历出来的数据的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-24Python编程基础:变量与数据类型
- 2024-12-23使用python部署一个usdt合约,部署自己的usdt稳定币
- 2024-12-20Python编程入门指南
- 2024-12-20Python编程基础与进阶
- 2024-12-19Python基础编程教程
- 2024-12-19python 文件的后缀名是什么 怎么运行一个python文件?-icode9专业技术文章分享
- 2024-12-19使用python 把docx转为pdf文件有哪些方法?-icode9专业技术文章分享
- 2024-12-19python怎么更换换pip的源镜像?-icode9专业技术文章分享
- 2024-12-19Python资料:新手入门的全面指南
- 2024-12-19Python股票自动化交易实战入门教程