I have an array which has many arrays in it which have many arrays in them, i.e, a large nested array.
I'd like to store this giant array in a text file to later be used by another python program - one python program produces the array and saves it to the text file, while another opens the text file and saves it to its own local array.
In other words, this large nested array has to be identical for both programs.
How exactly should I do this?
pickle...