diff --git a/README.md b/README.md index f0d45c8..8f44cf4 100644 --- a/README.md +++ b/README.md @@ -1716,19 +1716,20 @@ import numpy as np = np.random.randint(from_inclusive, to_exclusive, ) ``` -#### Shape is a tuple of dimension sizes. ```python .shape = = .reshape() = np.broadcast_to(, ) ``` -#### Axis is an index of dimension, that gets collapsed. ```python = .sum() = .argmin() ``` +* **Shape is a tuple of dimension sizes.** +* **Axis is an index of dimension, that gets collapsed.** + ### Indexing #### Basic indexing: ```bash