1# Python3 code to iterate over a list
2list = [1, 3, 5, 7, 9]
3
4# Using for loop
5for i in list:
6 print(i)
7
1# Python3 code to iterate over a list
2list = [1, 3, 5, 7, 9]
3
4# Using for loop
5for i in list:
6 print(i)
1lst = [10, 50, 75, 83, 98, 84, 32]
2
3res = list(map(lambda x:x, lst))
4
5print(res)
6