I'm creating a verticalized text file like this. Below is the portion of my code that is doing this using zip().
out = zip(word, pos)
outList = list(out)
print(outList, file=output)
The problem I'm running into is that the format of outList is: ('it', 'PP'), ('was', 'VBD'), ('an', 'DT') How can I get my output to be formatted as verticalized text now that the words and parts of speech are matched up?