After some complex operations, a resultant list is obtained, say list1, which is a list of different arrays.
Following is the list1
In [] : list1
Out [] :
[array([ 10.1]),
array([ 13.26]),
array([ 11.0 , 12.5])]
Want to convert this list to simple list of lists and not arrays
Expected list2
[ [ 10.1],
[ 13.26],
[ 11.0 , 12.5] ]
Please let me know if anything is unclear.