2021
02-21
02-21
python读取excel数据并且画图的实现示例
一,要读取的数据的格式:二,数据读取部分:b站视频参考:https://www.bilibili.com/video/BV14C4y1W7Nj?t=148#1930workbook=xlrd.open_workbook('1930.xlsx')sheet=workbook.sheet_by_index(0)A1=[]B1=[]#sheet.cell_value(i,0):第i行的第0个元素foriinrange(1,sheet.nrows):A1.append(sheet.cell_value(i,0))B1.append(sheet.cell_value(i,1))iflen(A1)!=len(B1):print("False")drawBar(A1,B1,1930)三,画图函数1....
继续阅读 >