网络编程
位置:首页>> 网络编程>> Python编程>> python读取excel指定列数据并写入到新的excel方法

python读取excel指定列数据并写入到新的excel方法

作者:Liu-YanLin  发布时间:2022-04-06 20:15:46 

标签:python,excel

如下所示:


#encoding=utf-8
import xlrd
from xlwt import *
#------------------读数据---------------------------------
fileName="C:\\Users\\st\\Desktop\\test\\20170221131701.xlsx"
bk=xlrd.open_workbook(fileName)
shxrange=range(bk.nsheets)
try:
 sh=bk.sheet_by_name("Sheet1")
except:
 print "代码出错"
nrows=sh.nrows #获取行数
book = Workbook(encoding='utf-8')
sheet = book.add_sheet('Sheet1') #创建一个sheet
for i in range(1,nrows):
 row_data=sh.row_values(i)
 #获取第i行第3列数据
 #sh.cell_value(i,3)
 #---------写出文件到excel--------
 print "-----正在写入 "+str(i)+" 行"
 sheet.write(i,1, label = sh.cell_value(i,3)) #向第1行第1列写入获取到的值
 sheet.write(i,2, label = sh.cell_value(i,5)) #向第1行第2列写入获取到的值
book.save("C:\\Users\\st\\Desktop\\test\\demo1.xls")

来源:https://blog.csdn.net/qq_32502511/article/details/56496195

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com