我正在尝试使用以下代码编写xml文件:
def make_xml(a_numpy_array):
from lxml import etree as ET
root = ET.Element('intersections')
intersection = ET.SubElement(root, 'intersection')
trace = ET.SubElement(intersection, 'trace')
trace.text = a_numpy_array
print ET.tostring(root, pretty_print=True, xml_declaration=True, encoding = 'utf-8')
.....
trace.text
需要一个字符串输入。我想在这里将xml文件存储为numpy ndarray的2D数组。但是我似乎无法将数据导出到字符串。 numpy.tostring
给我字节码,我该怎么办?我想出的解决方案是将ndarray写入文本文件,然后将文本文件作为字符串读取,但是我希望能够跳过编写文本文件的过程。 最佳答案
你可以做
trace.text = str(a_numpy_array)
有关更多选项,请参见
numpy.array_str
和 numpy.array2string
。关于python - 如何将numpy ndarray导出到字符串变量?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24764131/