HDF5 支持各种语言,Python 对应的库是 h5py。 $ pip install h5py or $ conda install h5py # Anaconda 核心概念 HDF5 里只有 2 种类型:dataset和group。 –dataset 就像数组,类似 Python 的 list (一维或多维),或 NumPy 的 ndarray。dataset 的语法和 ndarray 类似。 –group 就像 Python 的 dict,在我看...