We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 994a62c commit 59a2e9dCopy full SHA for 59a2e9d
README.md
@@ -1714,12 +1714,12 @@ import numpy as np
1714
```python
1715
<array> = np.array(<list>)
1716
<array> = np.arange(from_inclusive, to_exclusive, step_size)
1717
-<array> = np.ones(<shape>) # Shape is a tuple of dimension sizes.
+<array> = np.ones(<shape>)
1718
<array> = np.random.randint(from_inclusive, to_exclusive, <shape>)
1719
```
1720
1721
1722
-<array>.shape = <shape>
+<array>.shape = <shape> # Shape is a tuple of dimension sizes.
1723
<view> = <array>.reshape(<shape>)
1724
<view> = np.broadcast_to(<array>, <shape>)
1725
0 commit comments