I am loading some external data that looks like:
[[1 0 0][1 1 1][0 1 1]]
(no commas) into my code that requires arrays to run. I would like the code to look like:
np.array([[1 0 0],[1 1 1],[0 1 1]])
I'm not sure how to covert this to an array.
I've tried treating it as a list but that doesn't work.