Given a list of strings I want to be able to print 4 items of that list per line with one space between them until the list is exhausted. Any ideas? Thanks
Example:
ListA = ['1', '2', '3', '4', '5', '6']
Given this list I would like my output to be:
1 2 3 4
5 6