首页 > 代码库 > Python Data Visualization Cookbook 2.2.2
Python Data Visualization Cookbook 2.2.2
1 import csv 2 3 filename = ‘ch02-data.csv‘ 4 data =http://www.mamicode.com/ [] 5 6 try: 7 with open(filename) as f://用with语句将数据文件绑定到对象f 8 reader = csv.reader(f) 9 header = next(reader)//Python 3.X 用的是next() 10 data = http://www.mamicode.com/[row for row in reader] 11 except csv.Error as e: 12 print(‘Error reading CSV file at line %s: %s‘ % (reader.line_num,e) ) 13 sys.exit(-1) 14 15 if header: 16 print(header) 17 print("=======================") 18 for row in data: 19 print(row)
Python Data Visualization Cookbook 2.2.2
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。