To create list from sentence is what I want to do. Firstly, what I have done is coordinating this sentence,data = "In many countries food manufacturers are required by"
to list like
lines = data.split(' ')
and got
['In','many','countries','food','manufacturers','are','required','by']
Then, I want to change this form to
([('In','many'),('countries','food'),('manufacturers','are'),('required','by')])
How should I do next ? I would appreciate if you teach me in detail.