Merge pull request #117 from Haksell/suggest36

Add a solution to question 36
This commit is contained in:
Nicolas P. Rougier 2020-05-04 07:57:24 +02:00 committed by GitHub
commit 493c48d101
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -431,10 +431,11 @@ hint: %, np.floor, astype, np.trunc
< a36
Z = np.random.uniform(0,10,10)
print (Z - Z%1)
print (np.floor(Z))
print (Z.astype(int))
print (np.trunc(Z))
print(Z - Z%1)
print(Z // 1)
print(np.floor(Z))
print(Z.astype(int))
print(np.trunc(Z))
< q37
Create a 5x5 matrix with row values ranging from 0 to 4 (★★☆)