I am trying to export a multi dimensional list to some external file and then later import the said list from that same external file to use in different program.
How do I go about doing this?
An example list would be something like this:
A=[[[1,1,1],[1,1,2]],
[[1,2,1],[1,2,2],[1,2,3]],
[[1,3,1]]]
It doesn't necessarily have to be a text file, if there any file type more suitable to what I am attempting let me know.