Skip to content

Commit 15f4412

Browse files
authored
Merge pull request rougier#63 from SebastianoF/master
Spaces removed from filenames. Issue rougier#54 addressed
2 parents e817643 + 3141325 commit 15f4412

6 files changed

Lines changed: 3 additions & 3 deletions
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ print(Z)
171171

172172

173173
```python
174-
print(np.unravel_index(100,(6,7,8)))
174+
print(np.unravel_index(99,(6,7,8)))
175175
```
176176

177177
#### 21. Create a checkerboard 8x8 matrix using the tile function (★☆☆)
@@ -538,7 +538,7 @@ print(Z)
538538
```python
539539
from io import StringIO
540540

541-
# Fake file
541+
# Fake file
542542
s = StringIO("""1, 2, 3, 4, 5\n
543543
6, , , 7, 8\n
544544
, , 9,10,11\n""")
@@ -1079,7 +1079,7 @@ print (cartesian(([1, 2, 3], [4, 5], [6, 7])))
10791079
```python
10801080
Z = np.array([("Hello", 2.5, 3),
10811081
("World", 3.6, 2)])
1082-
R = np.core.records.fromarrays(Z.T,
1082+
R = np.core.records.fromarrays(Z.T,
10831083
names='col1, col2, col3',
10841084
formats = 'S8, f8, i8')
10851085
print(R)
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)