You are viewing a single comment's thread. Return to all comments →
import numpy as np
m , n = map(int, input().split(" ")) a = np.array(list(map(int, input().split(" ")))) b = np.array(list(map(int, input().split(" "))))
print(np.add(a,b)) print(np.subtract(a,b)) print(np.multiply(a,b)) print(np.floor_divide(a,b)) print(np.mod(a,b)) print(np.power(a,b))
Seems like cookies are disabled on this browser, please enable them to open this website
Array Mathematics
You are viewing a single comment's thread. Return to all comments →
import numpy as np
m , n = map(int, input().split(" ")) a = np.array(list(map(int, input().split(" ")))) b = np.array(list(map(int, input().split(" "))))
print(np.add(a,b)) print(np.subtract(a,b)) print(np.multiply(a,b)) print(np.floor_divide(a,b)) print(np.mod(a,b)) print(np.power(a,b))