在Windows 10上用Python创建HDF5文件时,为什么在目录中看不到它们?

时间:2019-11-21 22:11:43

标签: python file hdf5 h5py

我已经编写了这段代码:

data_to_write = np.random.random(size=(100,20))

with h5py.File('name-of-file.h5', 'w') as hf:
    hf.create_dataset("name-of-dataset",  data=data_to_write)

with h5py.File('name-of-file.h5', 'r') as hf:
    data = hf['name-of-dataset'][:]

但是,name-of-file.h5没有出现在我的工作目录中。这是我目前看到的:

Current result

我希望看到这个:

Expected result

但是我没有。为什么?

0 个答案:

没有答案