How do I chunk tuples in Python with standard library only?

In Python, you can chunk tuples using the standard library. This is useful when you want to break a tuple into smaller parts. Below is an example of how to achieve this:

def chunk_tuple(tup, chunk_size): """Yield successive chunk_size-sized chunks from the given tuple.""" for i in range(0, len(tup), chunk_size): yield tup[i:i + chunk_size] # Example usage my_tuple = (1, 2, 3, 4, 5, 6, 7) chunks = list(chunk_tuple(my_tuple, 2)) print(chunks) # Output: [(1, 2), (3, 4), (5, 6), (7,)]

chunk tuple Python standard library tuples code example