您好,登錄后才能下訂單哦!
這篇文章主要講解了“python讀取Excel中的數(shù)據(jù)以及將輸入寫入Excel的方法”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“python讀取Excel中的數(shù)據(jù)以及將輸入寫入Excel的方法”吧!
有時(shí)我們需要向含有VBA代碼的Excel寫入數(shù)據(jù),但又不能影響正常的VBA代碼執(zhí)行,起初我使用python的openpyxl模塊中函數(shù)將數(shù)據(jù)寫入xlsm文件中,寫入數(shù)據(jù)后發(fā)現(xiàn)執(zhí)行VBA代碼的按鈕消失不見了,于是通過查找原因發(fā)現(xiàn)是由于openpyxl對(duì)VBA支持并不友好,而對(duì)VBA支持友好是xlwings模塊。
讀取需注意點(diǎn):
默認(rèn)情況下,帶有數(shù)字的單元格被讀取為float,帶有日期單元格被讀取為datetime.datetime,空單元格轉(zhuǎn)化為None;數(shù)據(jù)讀取可以通過option操作指定格式讀取。
import xlwings as xw import os #創(chuàng)建APP應(yīng)用 app=xw.App(visible=True,add_book=False) #visible表示程序運(yùn)行時(shí)是否可見Excel,True表示可見,F(xiàn)alse表示不可見;add_book表示是否要新建工作簿 file = "數(shù)據(jù)寫入V1.xlsm" wb=app.books.open(file) #打開指定文件 ws = wb.sheets["Sheet1"] #工作表引用 #ws.activate() temp_value = ws["B2"].value #默認(rèn)讀取B2的值,為浮點(diǎn)型 print(type(temp_value)) print(temp_value) temp_n = ws["B3"].value #默認(rèn)讀取B3的值,這里未空值默認(rèn)應(yīng)顯示None print(type(temp_n)) print(temp_n) temp_value1 = ws["B2"].options(numbers=int).value #將B2的設(shè)置為整數(shù) print(type(temp_value1)) print(temp_value1)
#運(yùn)行結(jié)果
<class 'float'>
100.0
<class 'NoneType'>
None
<class 'int'>
100
>>>
import xlwings as xw import os app=xw.App(visible=True,add_book=False) file = "數(shù)據(jù)寫入V1.xlsm" wb=app.books.open(file) #打開指定文件 ws = wb.sheets["Sheet1"] print(ws.range('B2').value) #另一種方式讀取B2的值 #運(yùn)行結(jié)果 100.0
import xlwings as xw import os #創(chuàng)建APP應(yīng)用 app=xw.App(visible=True,add_book=False) file = "數(shù)據(jù)寫入V1.xlsm" wb=app.books.open(file) #打開指定文件 #工作表引用 ws = wb.sheets["Sheet1"] a = 6799 b = 2345 c = 1000 info = ws.used_range #print(info) nrows = info.last_cell.row #獲取sheet表中最大行 print(nrows) if ws['B'+str(nrows)]==None: ws['B'+str(int(nrows)-1)].value=a ws['C'+str(int(nrows)-1)].value=b ws['D'+str(int(nrows)-1)].value=c else: ws['B'+str(int(nrows)+1)].value=a ws['C'+str(int(nrows)+1)].value=b ws['D'+str(int(nrows)+1)].value=c wb.save() #保存數(shù)據(jù) wb.close() #關(guān)閉工作簿 app.quit()
寫入后
感謝各位的閱讀,以上就是“python讀取Excel中的數(shù)據(jù)以及將輸入寫入Excel的方法”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)python讀取Excel中的數(shù)據(jù)以及將輸入寫入Excel的方法這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。