See More

from itertools import repeat for i in map(lambda x, y: (x, y, x * y), repeat(2), range(5)): print("{:d} * {:d} = {:d}".format(*i))