當前位置:
首頁 >
python读xlsb
發布時間:2024/3/26
48
豆豆
生活随笔
收集整理的這篇文章主要介紹了
python读xlsb
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
from pyxlsb import open_workbook as xlsb#讀
# 獲取xslb 的第一張表
with xlsb('1.xlsb').get_sheet(1) as data:# 按行獲取數據for row in data.rows():# 讀取每行單元格內位置 和 數據for ro in row:# 得到 list 的數據print(ro.v)
總結
以上是生活随笔為你收集整理的python读xlsb的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Android 系统OTA升级
- 下一篇: python保存为xlsb_Python