I have the following list:
x =['Adam', 'G', '24', '1983', 'Aug', 'August Birthday', 'Steve', 'F', '31', '1970', 'Sep', 'sept bday']
I would like to get the above list into another list but in a way I can work with it like this
x = [('Adam', 'G', '24', '1983', 'Aug', 'August Birthday'),('Steve', 'F', '31', '1970', 'Sep', 'sept bday')]
The Pattern is x = [(0,1,2,3,4,5),(0,1,2,3,4,5)] etc....
What is a good way to do this?
I have tried to iterate over the list using a count and after each line adding 1 to the count so I can get to 6 then start count over again, but I am not sure how to get it into the desired list.