| 1 | initial version |
It is likely a duplicate of this question, you can change the bi-dimensional numpy array X into a list of lists as follows:
sage: Y = [list(x) for x in X]
sage: Y
[[1, 2], [3, 4], [1, 2], [4, 1]]
| 2 | No.2 Revision |
It is likely somehow a duplicate of this question, you can change the bi-dimensional numpy array X into a list of lists as follows:
sage: Y = [list(x) for x in X]
sage: Y
[[1, 2], [3, 4], [1, 2], [4, 1]]
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.