Arjen van Elteren
Results
1
comments of
Arjen van Elteren
Hi Steven, The quantities can be pickled, so if you are working with strings; ``` S = pickle.dumps(y) print S x = pickle.loads(S) print x ``` You could also use...