c=map(lambda *x:x, range(3))
print(list(c))
c=map(lambda x:x, range(3))
print(list(c))
Can someone tell me how is the output different if we use variable positional args
[(0,), (1,), (2,)] #1st output
[0, 1, 2] #2nd output
c=map(lambda *x:x, range(3))
print(list(c))
c=map(lambda x:x, range(3))
print(list(c))
Can someone tell me how is the output different if we use variable positional args
[(0,), (1,), (2,)] #1st output
[0, 1, 2] #2nd output