May my question is really simple, but I can't solve this. So I have my code where I have to user's input x and y. My method doesn't work
from scipy import signal
import numpy as np
x=np.array(input('Elements = ')
y=np.array(input('Elements = ')
h=signal.convolve(x,y)
print(h)