1

我对 odfpy 和 Python 3 有疑问。我尝试在 Opendocument 文本文件中复制现有表。我无法从原始表格中获取样式信息。这是我的代码:

# templateTable is a table.Table that has to be copied
for childNode in templateTable.childNodes:
    if 'style-name' in str(childNode.attributes):
        # the next command fails and the python interpreter tells me
        # 'style-name' is not in list
        style = childNode.getAttribute('style-name')

欢迎帮助!

4

1 回答 1

1

我终于自己找到了解决方案。我想与您分享它,以防其他人必须解决与我相同的问题。你可以在这里找到代码。

于 2018-05-02T13:55:28.460 回答