# credit to the Stack Overflow user in the source link a = ['a', 'b', 'c'] b = ['1', '0', '0'] res = " ".join("{} {}".format(x, y) for x, y in zip(a, b))