python读取表格csv的方法

来源:互联网 发布:用excel 数据清洗 编辑:程序博客网 时间:2024/04/28 23:31
#coding:utf-8import csvmy_file='user_info.csv'data=csv.reader(open(my_file,'rb'))for user in data:    print (user)

0 0
原创粉丝点击