instalar - install tabulate python mac
¿Bastante imprimir a un archivo? (2)
Si comprendo correctamente, solo debe proporcionar el archivo a la palabra clave de stream
en pprint :
with open(outputfilename,''w'') as fout:
pprint(tree,stream=fout,**other_kwargs)
Lo que necesitas es el módulo de impresión Pretty Print:
from pprint import pprint
# Build the tree somehow
with open(''output.txt'', ''wt'') as out:
pprint(myTree, stream=out)