using python 2.7 I have a couple of mbs of json data, that I need in two different files. Is it faster to just save that data into two files, using json.dump() Or is it better to save into 1 file, and then copy that file with a new name?
Which is considered as a "python" way? Thank you