How to use append with pickle?
I need to append to a pickle file (as I don't have the entire dictionary with me at one go). So for doing the same I have written the following code: import pickle p = {} p[1] = 2 q = {} q['a...