使用pptx读取PowerPoint表中的文本值?

时间:2014-06-04 19:32:05

标签: python powerpoint

使用pptx模块,

 tbl.cell(3,3).text

是可写的,但不是可读的属性。有没有办法只读取PowerPoint表中的文本?我试图避免COM和pptx是一个很好的模块,但缺乏这个特殊的功能。

谢谢!

1 个答案:

答案 0 :(得分:3)

目前,您需要更深入地使用python-pptx从单元格中获取文本。 cell.text' getter'在路线图上。

这样的事情应该完成它:

cell = tbl.cell(3, 3)
paragraphs = cell.textframe.paragraphs
for paragraph in paragraphs:
    for run in paragraph.runs:
        print run.text

如果您需要更多信息,请与我们联系。