1. 首页
  2. 编程语言
  3. Python
  4. 解决Python 使用h5py加载文件,看不到keys()的问题

解决Python 使用h5py加载文件,看不到keys()的问题

上传者: 2021-07-02 23:03:20上传 PDF文件 38.88 KB 热度 16次

python 3.x 环境下,使用h5py加载HDF5文件,查看keys,如下:结果看不到keys:原因主要是 python2.x 和 python3.x对keys方法的返回处理不同。When using h5py 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) 采用如下代码:参考资料:

用户评论