python-csv文件读取
2021/12/22 11:50:26
本文主要是介绍python-csv文件读取,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
文件名:aa.scv
编号,姓名,年龄,性别 1,账单,16,男 2,里斯,17,女 3,王五,18,男 4,赵六,19,男
# 读取csv import csv # 打开文件 with open('./data/aa.csv','r') as f: csv.reader(f) print(f) for i in f: print(i) # 只读取某一行 with open('./data/aa.csv','r') as f: f1=csv.reader(f) result = list(f1) print(result,result[0]) # 只读取某一列 with open('./data/aa.csv','r')as f: f2 = csv.reader(f) print(f2) for i in f2: print(i[0]) # 往csv 文件写数据 stu1=[6,'续租',18,'男'] stu2=[7,'张思思',88,'男'] with open('./data/aa.csv','a',newline='')as f: # 把数据写到哪 witers1 = csv.writer(f) witers1.writerow(stu1) witers1.writerow(stu2) stus=[ ('小米','qq'), ('小米2','q2q'), ('小米22','q22q'), ] with open('./data/aa.csv','a',newline='')as f: writes=csv.writer(f) for i in stus: writes.writerow(i)
这篇关于python-csv文件读取的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-03用FastAPI掌握Python异步IO:轻松实现高并发网络请求处理
- 2025-01-02封装学习:Python面向对象编程基础教程
- 2024-12-28Python编程基础教程
- 2024-12-27Python编程入门指南
- 2024-12-27Python编程基础
- 2024-12-27Python编程基础教程
- 2024-12-27Python编程基础指南
- 2024-12-24Python编程入门指南
- 2024-12-24Python编程基础入门
- 2024-12-24Python编程基础:变量与数据类型