python读取Excel文件的数据:
安装:pip install pandas
pip install xlrd
pip install xlwt
1.----读取Excel文件
from _future_ import print_function
import pandas as pd
from pandas import read_excel
pd.set_option('display.max_columns',5)
pd.set_option('display.max_rows',10)
df=read_excel('C:/Users/Administrator/Desktop/goldstine.xls','Sheet1')
print(df)
指定读取某行某列
df=read_excel('C:/Users/Administrator/Desktop/goldstine.xls','Sheet1',index_col=0,skiprows=3)
如果要读取多张表的数据(sheet1&sheet2),可以使用上下文管理器with打开Excel
with pd.ExcelFile('C:/Users/Administrator/Desktop/goldstine.xls') as xls:
for x in range(1,2):
df=read_excel(xls,'Sheet{}'.format(x),index_col=0,skiprows=3)
print(df)
(2)写Excel文件
首先创建一个Pandas的DataFrame的数据结构,然后调用DataFrame的to_excel方法,
df=pd.DataFrame([[1,2,3,4],[5,6,7,8],[9,10,11,12]],index=[0,1,2],columns=list("ABCD"))
df.to_excel('C:/Users/Administrator/Desktop/goodstine')
我们可以使用python列表的列表代表一个表格,一般索引行使用数字,列名使用大写字母。
读取和写入Excel文件,使用pandas实际上是使用pandas的DataFrame数据结构与Excel进行交互的。DataFrame实际上是一种与Excel完全兼容的数据结构,不仅看起来相似,甚至连实际的功能都很相似(甚至跟加强大)。