reset derived files to original state

This commit is contained in:
Gattocrucco
2025-08-26 10:56:42 +02:00
parent ed0a067b01
commit 8ea76d1f91
2 changed files with 0 additions and 6 deletions

View File

@@ -38,9 +38,6 @@ print(Z)
```python
Z = np.zeros((10,10))
print("%d bytes" % (Z.size * Z.itemsize))
# Simpler alternative
print("%d bytes" % Z.nbytes)
```
#### 5. How to get the documentation of the numpy add function from the command line? (★☆☆)
`hint: np.info`

View File

@@ -38,9 +38,6 @@ print(Z)
```python
Z = np.zeros((10,10))
print("%d bytes" % (Z.size * Z.itemsize))
# Simpler alternative
print("%d bytes" % Z.nbytes)
```
#### 5. How to get the documentation of the numpy add function from the command line? (★☆☆)