How to use set and map to multiply all values in the set by N in Python

1 Answer

0 votes
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

'''

 



answered Sep 15, 2018 by avibootz

Related questions

...