I'd like to read and write a list of lists of tuples from and to files.
g_faces = [[(3,2)(3,5)],[(2,4)(1,3)(1,3)],[(1,2),(3,4),(6,7)]]
I used
pickle.dump(g_faces, fp)
pickle.load(fp)
But the file is not human readable. Is there an easy way to do it?