您好,登录后才能下订单哦!
python 3.x 环境下,使用h6py加载HDF5文件,查看keys,如下:
>>> import h6py >>> f = h6py.File("a.h6",'r') >>> f.keys()
结果看不到keys:
KeysView(<HDF5 file "a.h6" (mode r)>)
原因主要是 python2.x 和 python3.x对keys方法的返回处理不同。
官方说明如下:
When using h6py from Python 3, the keys(), values() and items() methods will return view-like objects instead of lists. These objects support containership testing and iteration, but can't be sliced like lists.
可见 python2 返回为list,python3 返回为view-like objects,不能直接查看。
解决方法如下:
1) 换成 python2.x 环境进行相同操作。
2) 采用如下代码:
>>> [key for key in f.keys()]
参考资料:
https://stackoverflow.com/questions/31037088/discovering-keys-using-h6py-in-python3
以上这篇解决Python 使用h6py加载文件,看不到keys()的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持亿速云。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。