# __author__ = 'lzc'
# -*- coding: UTF-8 -*-
import csv
from matplotlib import pyplot as plt
import matplotlib
from datetime import datetime
filename = 'testCSV.csv'
#读取CSV数据
with open(filename) as f:
reader = csv.reader(f)
rows =list(reader) #读取所有的行
hs,dates=[],[]
#读取时间
for date
16 pthon matplot 6 读取CSV ,展示时序图
最新推荐文章于 2022-12-28 19:33:42 发布