I have a list of namedtuples and want to be able to print the elements of a tuple in a way so that it would be easy to easy to read. Each row of the list contains about 50+ namedtuple elements.
namedtuple = ('apple', 'box', 'cat', 'dog', 'phone', 'elephant', 'horse', 'goose', 'frog')
Desired Output:
apple dog goose
box elephant horse
cat frog