Calling filter returns
I am learning the concept of filters in Python. I am running a simple code like this. >>> def f(x): return x % 2 != 0 and x % 3 != 0 >>> filter(f, range(2, 25)) But instead of getting a list, I am getting some message like this. <filter object at 0x00FDC550> What does … Read more
