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 = 0
for i in range(len(arr)):


return arr


I 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 the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/7e2c0e68-d07f-4b53-8408-6da40c3f631d%40googlegroups.com.

Reply via email to