안녕하세요 여러분, 저는 파이썬으로 html을 만들고 싶습니다. 나는 Python 요청으로 XML을 읽었다. 그리고 저는 속성의 요소를 세었습니다.Python lxml html builder
count = len(nodeData.xpath("//user[@condition='good']"))
print (count)`
이와 유사한.
하지만 지금은 카운트 수가 유지되는 테이블을 원합니다.
nodeRow = html.TR(html.TD(count , style="background-color:#FF0000")
nodeTable.append(nodeRow)
print etree.tostring(nodeTable)
with open("out3.html", "wb") as f:
f.write(etree.tostring(nodeTable))
하지만 작동하지 않습니다. 오류는
TypeError: bad argument type: int(2746)
오류가있는 줄 번호가 있습니까? (힌트 : ** 예 **) – usr2564301