Say I have:
data_x = [0,1,2,3]
data_y = [4,5,6,7]
and I need the final result to be:
s_o_rms = [(0,4),(1,5),(2,6),(3,7)]
Till now I tried: