Run »
×
Change Orientation
import numpy as np arr1 = np.array([10, 20, 30, 40, 50, 60]) arr2 = np.array([3, 7, 9, 8, 2, 33]) newarr = np.remainder(arr1, arr2) print(newarr)
[ 1 6 3 0 0 27]
×
Report a Problem:
Your E-mail:
Page address:
Description:
Submit