I want to combine multiple lists into 1 list without using zip()
since zip()
will convert expected_list
to a list of tuples. I want expected_result
is a list of lists.
list1 = [ "a"
"b"
"c" ]
list2 = [ "e"
"f"
"g" ]
expected_list = [ [ "a", "e" ]
[ "b" ,"f" ]
[ "c" ,"g" ] ]
any solution for this ?