1. 首页
  2. 数据库
  3. 其它
  4. 求助!!自学python读取csv文件失败python编程从入门到实践第16章

求助!!自学python读取csv文件失败python编程从入门到实践第16章

上传者: 2021-02-25 19:09:54上传 PDF文件 778.92KB 热度 14次
Python编程从入门到实践,第16章,下载数据 import csv from datetime import datetime from matplotlib import pyplot as plt 从文件中获取日期和最高气温 filename = ‘sitka_weather_07-2014.csv’ with open(filename) as f: reader = csv.reader(f) header_row = next(reader) dates,highs = [],[] for row in reader: current_date = datetime.st
用户评论