gpt4 book ai didi

python - Python 的 word 文档的页数

转载 作者:行者123 更新时间:2023-11-28 21:26:27 25 4
gpt4 key购买 nike

有没有办法用 Python 有效地获取 word 文档(.doc,.docx)的页数?

对于 .odt 文件呢?

我想将其用于 Linux 上基于 Web2py 的 Web 应用程序。

谢谢!

最佳答案

仅针对那些搜索此博客条目的人....

from win32com.client import Dispatch
#open Word
word = Dispatch('Word.Application')
word.Visible = False
word = word.Documents.Open(doc_path)

#get number of sheets
word.Repaginate()
num_of_sheets = word.ComputeStatistics(2)

关于python - Python 的 word 文档的页数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12964580/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com