I have a list consisting of 150 integers, each one ranging from 1 to 80. I want to print the list with the following format:
x01, x02, x03, x04, x05,
x06, x07, x08, x09, x10,
x11, x12, x13, x14, x15,
x16, x17, x18, x19, x20,
...
...
...
In other words I want to print the numbers in groups of 5. How do I do that?