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