0
我嘗試插入值與Python和xlrd模塊Excel文件如下:如何使用Python和xlrd模塊將數據插入Excel文件?
import xlrd
data=xlrd.open_workbook('1.xls')
table=data.sheets()[0]
row = 0
col = 0
ctype = 1 # 類型 0 empty,1 string, 2 number, 3 date, 4 boolean, 5 error
value = 'abc'
xf = 0 # 擴展的格式化 (默認是0)
table.put_cell(row, col, ctype, value, xf)
但在Excel文件中沒有新的數據「ABC」。 那麼有人幫忙? 提前致謝。
看看http://stackoverflow.com/questions/2725852/writing-to-existing-workbook-using-xlwt/2726298#2726298 – George