This question here goes nearly where I want. However, my dictionary has a list inside a list for each key, such as:
test = {1092268: [[81, 90], [78, 90]],
524292: [[80, 80], [65, 78]],
892456: [[88, 81], [81, 88]]}
The suggestion that Works when there is just one list inside each key is:
xs, ys = zip(*test.values())
How can I unpack (still xs and ys), but from multiple lists?
For the example, the results I expect are:
xs = [81, 78, 80, 65, 88, 81]
ys = [90, 90, 80, 78, 81, 88]