Contact: aviboots(AT)netvision.net.il
40,849 questions
53,254 answers
573 users
from itertools import * for val in map(lambda x, y: (x, y, x * y), repeat(3), range(7)): print('{:d} * {:d} = {:d}'.format(*val)) ''' run: 3 * 0 = 0 3 * 1 = 3 3 * 2 = 6 3 * 3 = 9 3 * 4 = 12 3 * 5 = 15 3 * 6 = 18 '''