Hello I have a question related to the sort function in python. So if I have 2 arrays x and y e.g
X = [1, 5, 6, 2]
Y = [2, 7, 5, 1]
If i sort x, y wont be effected but what if i want it to like follow that index if that makes sense like e.g
>>> X
[1, 2, 5, 6]
>>> Y
[2, 1, 7, 5]