Python办公自动化 | EXCEL读取和写入

Posted mba1398

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python办公自动化 | EXCEL读取和写入相关的知识,希望对你有一定的参考价值。

 

 

 1 import xlrd
 2 import xlwt
 3 
 4 
 5 xlsx = xlrd.open_workbook(rD:pycharmlearningautowork	est.xlsx)
 6 table = xlsx.sheet_by_index(0)
 7 # table = xlsx.sheet_by_name(‘Sheet1‘)
 8 print(table.cell_value(0, 0))
 9 print(table.cell(0, 0).value)
10 print(table.row(0)[0].value)
11 
12 new_workbook = xlwt.Workbook()
13 new_sheet = new_workbook.add_sheet(aaa)
14 new_sheet.write(1, 1, hello word)
15 new_workbook.save(rD:pycharmlearningautowork	est2.xls)

 

以上是关于Python办公自动化 | EXCEL读取和写入的主要内容,如果未能解决你的问题,请参考以下文章

python处理Excel实现自动化办公教学(含实战)

Python openpyxl使用教程

Python 自动化办公1批量读取word表格内容,并整理到excel文件

Python 自动化办公1批量读取word表格内容,并整理到excel文件

Python 自动化办公2批量读取excel表格内容,筛选符合条件行,并整理到新excel文件

Python 自动化办公2批量读取excel表格内容,筛选符合条件行,并整理到新excel文件