我在使用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')
欢迎帮忙!
2条答案
按热度按时间smdnsysy1#
我终于自己找到了一个解决方案。我想和你分享它,以防别人不得不和我一起解决同样的问题。你可以找到代码here。
y1aodyip2#
对于任何还在这里的人来说,这是简单的: