当前位置:   article > 正文

Python中读取csv文件转换为list列表的两种格式,第二种是逐行读取_list(csv.reader(f))

list(csv.reader(f))

1、使用csv包

  1. import csv
  2. with open('personal GDP.csv', 'r',encoding='utf-8')as f:
  3. cs = list(csv.reader(f))
  4. next(reader)# 跳过表头
  5. title = next(reader)##获取表头,列表形式
  6. print('标题列:')

2、使用for循环

  1. 写法一
  2. ss=[]
  3. for line in open('./lists.txt','r',encoding='utf-8'):
  4. ss.append(line.strip())#一次读一行,并且内存不会溢出,去除空行或者空格
  5. 写法二:
  6. with open('./math.py','r',encoding='utf-8') as f:
  7. for i in f:
  8. print(i.strip()) #去除空行或者空格

 

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/212534
推荐阅读
相关标签
  

闽ICP备14008679号