import h5py filename = 'file.hdf5' f = h5py.File(filename, 'r') # List all groups print("Keys: %s" % f.keys()) a_group_key = list(f.keys())[0] # Get the ...
確定! 回上一頁