How do I join 2 lists with elements side by side? For example:
list1 = ["they" , "are" ,"really" , "angry"]
list2 = ["they" , "are" ,"seriously" , "angry"]
I want output as:
list3 = [("they","they"),("are","are"),("really","seriously"),("angry","angry")]
The above looks like a list tuples though, and if the above list were columns with each word in a row, how would I append list2 to list1?