When I do this at command line (same for filter and reduce)
map( lambda x: x+1, [1,2,3,4,5] )
instead of a list/collection as a result... i got
<map object at 0x6ffffe7b630>
to obtain the list I have to apply the list() function same happens if I use a plain old function to replace the lambda...
Why this behavior ?