import xlrd
import xlwt
def read_excel_data():
workbook = xlrd.open_workbook('test.xlsx')
sheet = workbook.sheet_by_index(0)
for index in range(0, sheet.nrows):
row_value = sheet.row_values(index)
print(row_value)
def write_excel_data():
workbook = xlwt.Workbook(encoding = 'ascii')
worksheet = workbook.add_sheet('sheet')#excel中sheet名字
worksheet.write(0, 1, 'Unformatted value') # 不带样式的写入(行,列,值)
workbook.save('formatting.xls') # 保存文件
if __name__ == '__main__':
write_excel_data()
python读写excel
于 2022-01-05 09:42:51 首次发布