我正在处理一些大树,我希望能够将它们存储在文本文件中并在其他地方重建它们,而不必每次都重新创建树。
我正在使用AnyTree制作树木。树包含numpy数组,因此不支持JSON转换。我正在将它们导出为嵌套字典。
这就是我将树写入文本文件的方式。
#Exports the tree to the given filename as a dictionary
def TreetoDict(filename, root):
exporter = DictExporter()
dictoutput = exporter.export(root)
string = str(dictoutput)
with open(filename,"w") as f:
f.write(string)
f.close()
print("Finished writing")
return dictoutput
由于树很大,因此我想在未经我同意的情况下将字典转换为字符串会以“”的形式出现很多换行符。
这是文本文件的外观。
("{'center': array([0, 0, 0]), 'radius': 2, 'name': '([0 0 0],2)', "
"'numpoints': 0, 'centerofmass': array([0, 0, 0]), 'children': [{'center': "
"array([1., 1., 1.]), 'radius': 1.0, 'name': '([1. 1. 1.],1.0)', 'numpoints': "
"0, 'centerofmass': array([0, 0, 0]), 'children': [{'center': array([1.5, "
"1.5, 1.5]), 'radius': 0.5, 'name': '([1.5 1.5 1.5],0.5)', 'numpoints': 0, "
"'centerofmass': array([0, 0, 0])}, {'center': array([1.5, 1.5, 0.5]), "
"'radius': 0.5, 'name': '([1.5 1.5 0.5],0.5)', 'numpoints': 0, "
"'centerofmass': array([0, 0, 0]), 'children': [{'center': array([1.75, 1.75, "
"0.75]), 'radius': 0.25, 'name': '([1.75 1.75 0.75],0.25)', 'numpoints': 0, "
"'centerofmass': array([0, 0, 0]), 'children': [{'center': array([1.875, "
"1.875, 0.875]), 'radius': 0.125, 'name': '([1.875 1.875 0.875],0.125)', "
"'numpoints': 0, 'centerofmass': array([0, 0, 0])}, {'center': array([1.875, " etc.
如何将字典格式化为要放入文本文件中的字符串,随后可以读取以重建树?
答案 0 :(得分:0)