I want interleave 4 lists of same length in python.
I search this site and only see how to interleave 2 in python: Interleaving two lists in Python
Can give advice for 4 lists?
I have lists like this
l1 = ["a","b","c","d"]
l2 = [1,2,3,4]
l3 = ["w","x","y","z"]
l4 = [5,6,7,8]
I want list like
l5 = ["a",1,"w",5,"b",2,"x",6,"c",3,"y",7,"d",4,"z",8]