Save
...
Unit 2 - Programming
ESP - Mnaipulating data and visualising
Using numpy arrays
Save
Share
Learn
Content
Leaderboard
Share
Learn
Created by
Dylan Tappenden
Visit profile
Cards (3)
How would you check a numpy arrays values to see if they fit two boolean operations?
with
np.logical_and
()
How would you check a numpy arrays values to see if they fit one or another or both boolean operations?
with np.logical_or()
How would you check a numpy arrays values to see if they don't fit two boolean operations?
with np.logical_
not