Hey guys i'm scraping an website which ultimately led me to an list consisting of First and last name of the users...I would like to separete every 2 items of this said list,group them and store them in another list that will contain all the first and last names grouped.
For example: ['Jhon', 'Doe', 'Joey', 'Santos']
Desired output : list1 = ['Jhon','Doe'] list2 = ['Joey','Santos']
Is there a way of automating this?