Como encontrar o comprimento de um objeto "filtro" em python

>>> n = [1,2,3,4]

>>> filter(lambda x:x>3,n)
<filter object at 0x0000000002FDBBA8>

>>> len(filter(lambda x:x>3,n))
Traceback (most recent call last):
  File "<pyshell#3>", line 1, in <module>
    len(filter(lambda x:x>3,n))
TypeError: object of type 'filter' has no len()

Eu não consegui obter o tamanho da lista que obtive. Então tentei salvá-lo em uma variável, assim ...

>>> l = filter(lambda x:x>3,n)
>>> len(l)
Traceback (most recent call last):
  File "<pyshell#5>", line 1, in <module>
    len(l)
TypeError: object of type 'filter' has no len()

Em vez de usar um loop, existe alguma maneira de obter o tamanho disso?

questionAnswers(5)

yourAnswerToTheQuestion