码迷,mamicode.com
首页 > 编程语言 > 详细

Python读取csv文件

时间:2019-12-28 16:03:35      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:enc   name   data   one   alt   int   with   port   print   

创建一个csv文件,命名为data.csv,文本内容如下:

root,123456,login successfully
root,wrong,wrong password
wrong,123456,nonexistent username
,123456,username is null
root,,password is null

使用Excel打开如图:

技术图片

利用Python内置的csv读取内容:

import csv

with open('data.csv', 'r', encoding='utf-8')as f:

    reader = csv.reader(f)

    for i in reader:
        print(i)

输出结果:

['root', '123456', 'login successfully']
['root', 'wrong', 'wrong password']
['wrong', '123456', 'nonexistent username']
['', '123456', 'username is null']
['root', '', 'password is null']

Python读取csv文件

标签:enc   name   data   one   alt   int   with   port   print   

原文地址:https://www.cnblogs.com/milesma/p/12111751.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!