Python 的excel处理操作

一、
创建excel在桌面

import  pandas as pd

df =pd.DataFrame()
df.to_excel('C:/Users/Administrator/Desktop/output.xlsx')
print("done!")

注意要建立pip install openpyxl 包

读取excel

#在调用read_excel()函数时,添加条件“engine='openpyxl'”,借助openpyxl库来读取xlsx文件。即:read_excel(path,engine='openpyxl')
board=pd.read_excel('C:/Users/Administrator/Desktop/data.xlsx',engine='openpyxl')
print(board.shape)
print(board)

画图

import matplotlib.pyplot as plt

board.plot.line(x='省份',y='死亡')
plt.show()

花式绘图

board.plot.bar(x='省份',y=['死亡','现有确诊'],color=['orange','red'])
plt.show()

依次还有其他图饼图

上一篇:使用openpyxl写入数据到excle中时,出现的问题


下一篇:[转载] Python3接口自动化框架:第三方openpyxl库读取excel之命名元组namedtuple承载数据