From 153f79e1da45e5dcfe75cc5dcc16ced9811a84a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Tue, 29 Jan 2019 19:47:56 +0100 Subject: [PATCH] Itertools, Numpy --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 839bd69..8ecdb64 100644 --- a/README.md +++ b/README.md @@ -1134,7 +1134,8 @@ Hashlib Itertools --------- -**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!** +* **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!** ```python from itertools import * @@ -1708,11 +1709,10 @@ NumPy import numpy as np ``` -**Shape is a tuple of ints, representing sizes of array's dimensions.** ```python = np.array() = np.arange(from_inclusive, to_exclusive, step_size) - = np.ones() + = np.ones() # Shape is a tuple of dimension sizes. = np.random.randint(from_inclusive, to_exclusive, ) ```