python用xlrd追加excel

Python版本3.7.1  Win10 64位

import xlrd
write_excel = 'C:\\Users\\Administrator\\Desktop\\search.xlsx'  #要写入的Excel文件
book = xlrd.open_workbook(write_excel)     #打开Excel
file = copy.copy(book)                     #在内存中复制
sheet = wfile.get_sheet('Sheet1')          #读取工作蒲名为Sheet1的那一页
sheet.write(2, 0, ‘hello world’)              #行列,从0开始,此刻是写入第三行第一列,hello world为要吸入的内容
file.save(ls_write_excel)                  #保存Excel             

你可能感兴趣的:(Python基础)