0
Whats the meaning of to define a list explicitly
4 Respostas
0
Somshuvra, the function filter creates an object of different type than a list, which works well in for loops and such.
But if you want to have a filtered *list*, you have to explicitly say so by converting the filter object to a list.
list(filter(.....
0
The context is not clear. Where in the tutorial did you find this line?
0
I didn't find the exact line it was there as a footnote in the filter/ map section
0
Thanks Got it