So I have 4 variables that show coordinates x and y/
e.g:
first_co = [0,0]
second_co = [100,200]
third_co = [300,400]
fourth_co = [800,1000]
When i tried to just declare a numpy array as
box = np.array([first_co],[second_co],[third_co],[fourth_co])
I got a value error, how do I declare a numpy array with 4 variables?