I want to merge the 2 lists:
a = [1,2,3,4,"a"]
b = [1,2,3,4,"b"]
to make:
[[1,1], [2,2], [3,3], [4,4], ["a","b"]]
What would be the best way of doing this?
Also if possible I would like to append further lists as well like so:
c = [5,6,7,8,"c"]
to get
[[1,1,5], [2,2,6], [3,3,7], [4,4,8], [5,5,9], ["a","b","c"]
You can assume the lists are the same length.