From 59a2e9d75f352be96ce9196d8c0d5baeb1e8b640 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Tue, 29 Jan 2019 19:53:43 +0100 Subject: [PATCH] Numpy --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index eb922df..5a163be 100644 --- a/README.md +++ b/README.md @@ -1714,12 +1714,12 @@ import numpy as np ```python = np.array() = np.arange(from_inclusive, to_exclusive, step_size) - = np.ones() # Shape is a tuple of dimension sizes. + = np.ones() = np.random.randint(from_inclusive, to_exclusive, ) ``` ```python -.shape = +.shape = # Shape is a tuple of dimension sizes. = .reshape() = np.broadcast_to(, ) ```