If I have a list like the following:
list = ['example1' , 'example2' , 'example3' , 'example4', 'example5','example6']
How would I go about pulling three values at a time? I want to then create two separate lists like the following
new_list1 = ['example1' , 'example2' , 'example3']
new_list2 = ['example4' , 'example5' ,'example6']
Thank you!