re-generate markdown files

This commit is contained in:
Giacomo Petrillo 2025-08-25 17:57:43 +02:00
parent ee15dec2c7
commit ed0a067b01
2 changed files with 6 additions and 0 deletions

View File

@ -38,6 +38,9 @@ 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,6 +38,9 @@ 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? (★☆☆)