By mistake I used numpy array over a set to save my result. The run was time-consuming and it is hard to repeat it. It seems something is stored in the variable, but how can I retrieve the elements inside it?
To simplify, I did something like
#import numpy as np
result = np.array({1,2,3,4})
Now how can I access the elements (i.e., 1,2,3,4) in result?