Python第三方库——xlrd&xlwt读写Excel表

现在已有data.xls(或者.xlsx)文件,想要读取表中数据。

import xlrd
book = xlrd.open_workbook("data.xls")
sheet = book.sheet_by_name("sheet1")
for r in sheet.nrows:
    x = sheet.cell(r, 0).value #读取指定单元格中的数据
row1 = sheet.row_values(0)#读取指定行的数据,返回列表

希望把数据保存到表data.xls中去:

import xlwt
book = xlwt.Workbook()
sheet = book.add_sheet("sheet1")
sheet.write(0, 0, value)#向0行0列的单元格中填入值value
book.save("data.xls")

你可能感兴趣的:(编程语言Python)