main_list = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h']

res = [(' (s) '.join(i) + ' (s)') for i in zip(*[iter(main_list)]*4)]
print(res)