From 95777749d74545609dd44574c7c78676b12d3d57 Mon Sep 17 00:00:00 2001 From: Poedator <24738311+poedator@users.noreply.github.com> Date: Sat, 17 Oct 2020 20:46:27 +0300 Subject: [PATCH] upd example in a49 with default threshold=1000 [reference](https://github.com/numpy/numpy/blob/551773f27ccc955ce24d15eae84eed924250c573/numpy/core/arrayprint.py#L107-L110) 16x16 is always printed OK. A larger np.array is needed to illustrate the difference. Anything with over 1000 elements would do. --- source/exercises100.ktx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/exercises100.ktx b/source/exercises100.ktx index cd934e4..419a050 100644 --- a/source/exercises100.ktx +++ b/source/exercises100.ktx @@ -604,7 +604,7 @@ hint: np.set_printoptions < a49 np.set_printoptions(threshold=float("inf")) -Z = np.zeros((16,16)) +Z = np.zeros((40,40)) print(Z) < q50