91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python 讀取有公式cell的結果內容實例方法

發布時間:2020-09-15 00:52:27 來源:腳本之家 閱讀:131 作者:paeser 欄目:開發技術

操作Excel通常是用如下三個擴展體:

  1. import xlrd
  2. import xlwt
  3. import openpyxl

wb1 = openpyxl.load_workbook(xlsxFileWithFullPath, data_only=True)

就是加上 “data_only=True” 這個參數。

xlsxFileWithFullPath ---要操作的文件。

加上以后你會發現,還是依然如故,或者是時可時否!

如把文件打開,再保存一遍,執行程序,第一遍可以,第二遍就不行了!

其實, 關于 data_only=True 這個參數有個重要說明:

# data_only (bool) – controls whether cells with formula have either the formula (default) or the value stored the last time Excel read the sheet

這就解釋了上述時可時否的問題。

這樣解決問題的辦法就有了:用程序來完成那個保存文件的任務即可!

(1)

def ReadLine(self, tip1, tip2, movingRC, fixedRC, RorC, totalCells, sheetName, xlsxFileWithFullPath):

[!!]just open and save the file once! why? see bellow!
xlsxDealer.`JustOpenAndSaveTheFile`(xlsxFileWithFullPath)

(2)

def JustOpenAndSaveTheFile(self, file_name):
from win32com.client import Dispatch
xlApp = Dispatch("Excel.Application")
xlApp.Visible = False
xlBook = xlApp.Workbooks.Open(file_name)
xlBook.Save()
xlBook.Close()

問題是解決了,速度就是有點慢!

以上就是本次介紹的全部相關知識點,感謝大家的學習,歡迎轉載。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

瓦房店市| 皮山县| 石台县| 鹰潭市| 富平县| 新竹县| 焉耆| 宁晋县| 杭锦旗| 保亭| 榆林市| 饶平县| 泰安市| 含山县| 和田县| 江山市| 师宗县| 兴安盟| 古田县| 湟源县| 河东区| 明溪县| 乌鲁木齐县| 张家港市| 时尚| 富蕴县| 锡林浩特市| 雷州市| 靖边县| 宜宾市| 攀枝花市| 城口县| 大邑县| 北海市| 通海县| 乐平市| 综艺| 新安县| 瑞安市| 大新县| 五常市|