I'm trying to read a list from a .npy file. The content in text.npy fileis a list.--
content = open(os.path.join(current.request.folder, 'modules', 'text.npy'), 'rb').read()
arr = np.array(list(content))it=iter(arr)i = 0for i in range(len(arr)):
return arrI got this error:TypeError: iteration over a 0-d array
What could I be doing wrong?, How do I resolve this?Regards
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
---
You received this message because you are subscribed to a topic in the Google Groups "web2py-users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/web2py/B617IGX3BjM/unsubscribe.
To unsubscribe from this group and all its topics, send an email to web2py+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/web2py/7e2c0e68-d07f-4b53-8408-6da40c3f631d%40googlegroups.com.