def lists = [['a','b','c'], ['A','B','C'], [1,2,3]] lists.transpose().each{ println it.join() }