InterviewSolution
Saved Bookmarks
| 1. |
Which function are there in binary function in Numpy package? |
|
Answer» Binary operation is SIMPLY a rule for combining two values to create a NEW value. NUMPY. bitwise_and() : This function is USED to Compute the bit-wise AND of two array element-wise. This function computes the bit-wise AND of the underlying binary representation of the integers in the INPUT arrays. |
|