标签: python
li=[1,2,3,4,3,5,6,7,8,9,10,13,15,24,21,33,22] ll=list(filter(lambda x:(x%2 == 0),li)) print(ll)
我收到此错误
TypeError: 'list' object is not callable