I have two numpy arrays and I'm trying to find the greater of them (element wise, i.e. all elements should be greater)
import numpy as np
a = np.array([4,5,6])
b = np.array([7,8,9])
if b > a:
print 'True'
But I'm not getting the desired output and getting an error