File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ The very first thing you'll need to do is create a new file::
20
20
>>> import h5py
21
21
>>> import numpy as np
22
22
>>>
23
- >>> f = h5py.File("mytestfile.hdf5", "w").
23
+ >>> f = h5py.File("mytestfile.hdf5", "w")
24
24
25
25
The :ref: `File object <file >` is your starting point. It has a couple of
26
26
methods which look interesting. One of them is ``create_dataset ``::
@@ -83,7 +83,7 @@ Specifying a full path works just fine::
83
83
u'/subgroup2/dataset_three'
84
84
85
85
Groups support most of the Python dictionary-style interface.
86
- You retrieve object in the file using the item-retrieval syntax::
86
+ You retrieve objects in the file using the item-retrieval syntax::
87
87
88
88
>>> dataset_three = f['subgroup/dataset_three']
89
89
You can’t perform that action at this time.
0 commit comments