I have a list of 480 tuples.
list = [(7,4), (6, 1), (4, 8)....]
I need to take the first six tuples and put them in a temporary variable to perform some assessment of them. THEN I need to take the following six tuples and put them in the temporary variable and do the same assessment, and then the next six tuples and so on.
I am not sure how to set this up in a loop--how to grab six tuples and then take the next six tuples from the list? Or is there an easier way to set up the data structure of tuples to do this?