Python处理excle的方式

2020-01-05  本文已影响0人  August________

Python处理excle

流程

读取表格

35.png
import xlrd
xlsx = xlrd.open_workbook('D:/python_work/excle/test-r.xlsx')
table = xlsx.sheet_by_index(0)
print(table.cell_value(5, 0))
print(table.cell(5, 0).value)
print(table.row(5)[0].value)
36.png
import xlwt

new_workbook = xlwt.Workbook()
worksheel = new_workbook.add_sheet("new_test")
worksheel.write(0, 0, 'test')
new_workbook.save('D:/python_work/excle/test.xls')
上一篇 下一篇

猜你喜欢

热点阅读