There are a few questions on this but none relate to this. I have two separate list of lists that I want to zip together. The comprehension works for a normal list but not a list of lists.
X = [[17, 4]]
Y = [[32,-58]]
lst = [list(x) for x in zip(X, Y)]
Out:
[[[17, 4], [32, -58]]]
Intended:
[[17, -32], [4, -58]]