upd example in a49

with default threshold=1000 [reference](551773f27c/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.
This commit is contained in:
Poedator
2020-10-17 20:46:27 +03:00
committed by GitHub
parent 49ea7ffd2b
commit 95777749d7

View File

@@ -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