Apologies for the basic question as I am quite new to the topic.
conlltags = [(word, pos, chunktag) for ((word,pos),chunktag)
in zip(sentence, chunktags))]
Can you please break the code above in the format given below:
for i in exampleSentence:
letterByLetter = i
print(letterByLetter)