Comment imprimer 2 liste dans Python comme table

a = ['a', 'b', 'c']
b = ['1', '0', '0']
res = "\n".join("{} {}".format(x, y) for x, y in zip(a, b))
Wicked Worm