Q. Which of the following is the same as list(map(lambda x: x**-1, [1, 2, 3]))? (Solved)
1. [x**-1 for x in [(1, 2, 3)]]
2. [1/x for x in [(1, 2, 3)]]
3. [1/x for x in (1, 2, 3)]
4. error
- c. [1/x for x in (1, 2, 3)]
1. [x**-1 for x in [(1, 2, 3)]]
2. [1/x for x in [(1, 2, 3)]]
3. [1/x for x in (1, 2, 3)]
4. error