Contact: aviboots(AT)netvision.net.il
40,849 questions
53,254 answers
573 users
st = {2, 4, 6, 7} N = 3 result = map(lambda x: x * N, st) for item in result: print(item) ''' run: 6 12 18 21 '''