Merge pull request #128 from Jeff1999/patch-1

Fix Q.49
This commit is contained in:
Nicolas P. Rougier
2020-07-01 10:18:35 +02:00
committed by GitHub

View File

@@ -604,7 +604,7 @@ How to print all the values of an array? (★★☆)
hint: np.set_printoptions
< a49
np.set_printoptions(threshold=np.nan)
np.set_printoptions(threshold=float("inf"))
Z = np.zeros((16,16))
print(Z)