Skip to content

Commit 153f79e

Browse files
committed
Itertools, Numpy
1 parent eaa47b2 commit 153f79e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1134,7 +1134,8 @@ Hashlib
11341134

11351135
Itertools
11361136
---------
1137-
**Every function returns an iterator and can accept any collection and/or iterator. If you want to print the iterator, you need to pass it to the list() function!**
1137+
* **Every function returns an iterator and can accept any collection and/or iterator.**
1138+
* **If you want to print the iterator, you need to pass it to the list() function!**
11381139

11391140
```python
11401141
from itertools import *
@@ -1708,11 +1709,10 @@ NumPy
17081709
import numpy as np
17091710
```
17101711

1711-
**Shape is a tuple of ints, representing sizes of array's dimensions.**
17121712
```python
17131713
<array> = np.array(<list>)
17141714
<array> = np.arange(from_inclusive, to_exclusive, step_size)
1715-
<array> = np.ones(<shape>)
1715+
<array> = np.ones(<shape>) # Shape is a tuple of dimension sizes.
17161716
<array> = np.random.randint(from_inclusive, to_exclusive, <shape>)
17171717
```
17181718

0 commit comments

Comments
 (0)