我对如何做到这一点缺乏想法?我真的需要一些帮助...我正在尝试根据输入 XML 文件生成 HTML 代码并遇到属性错误,问题是我正在使用“TR_TEMPLATE = '\ n'.join(TR_TEMPLATE)" 成为一个字符串,稍后我的代码再次尝试附加导致错误的 "TR_TEMPLATE.append(' {{}}'.format(col))" ..我无法删除首先加入,我该如何进行?
我的代码:-
http://pastie.org/5390303
输入如下
http://pastie.org/5390316
预期输出:-
http://pastie.org/5390312
属性错误
Traceback (most recent call last):
File "C:\Dropbox\scripts\test.py", line 54, in <module>
crInfo = CRlistToTable(CRlist)
File "C:\Dropbox\scripts\test.py", line 31, in CRlistToTable
TR_TEMPLATE.append(' <td>{{}}</td>'.format(col))
AttributeError: 'str' object has no attribute 'append'