re-generate markdown files
This commit is contained in:
parent
ee15dec2c7
commit
ed0a067b01
@ -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`
|
||||
|
||||
@ -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? (★☆☆)
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user