Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
What is the reverse of an `ndarray.tolist()`?
+0
−0
I have a nested python list structure, generated by a happily executed tolist() method on a more than 2 dimensional ndarray.
How can I get back my numpy ndarray from the list?
1 answer
+1
−0
Works for me
The following users marked this post as Works for me:
User | Comment | Date |
---|---|---|
peterh | (no comment) | Jun 9, 2025 at 21:44 |
This should be possible using np.array
as indicated in the Notes of the tolist
docs
0 comment threads