pandas读写excel

Posted lzhc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pandas读写excel相关的知识,希望对你有一定的参考价值。

import pandas as pd
import numpy as np


df = pd.read_csv("result.csv")              # csv
# df = pd.read_excel("sample.xlsx")         # excel
df.to_excel("sample.xlsx", encoding="gbk", index=False)     # write data to excel
print(df.head(10))
# include row title, read 0-3 row data, sum is 5 row, read 0-1 column data, sum is 2 column
column = df.ix[:3, :2]                      
column.to_excel("sample.xlsx", encoding="gbk", index=False)

 

以上是关于pandas读写excel的主要内容,如果未能解决你的问题,请参考以下文章

pandas读写excel

python pandas读写excel

#yyds干货盘点#数据分析从零开始实战,Pandas读写Excel/XML数据

100天精通Python(数据分析篇)——第57天:Pandas读写Excel(read_excelto_excel)

机器学习之数据预处理,Pandas读取excel数据

[Python3]读写Excel - openpyxl库