python----读取写入Excel文件

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完全兼容的数据结构,不仅看起来相似,甚至连实际的功能都很相似(甚至跟加强大)。

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值