2016-10-23 34 views

回答

2

你可能想使用h5py包:

import h5py 

with h5py.File("myfile.h5") as f: 
    print(f.keys()) # works like a dict 
+0

完美!感謝你! – ShanZhengYang