选择题 28.  下面代码的输出结果是
    def f2(a):
    if a>33:
    return True
    li=[11,22,33,44,55]
    res=filter(f2,li)
    print(list(res))
【正确答案】 A
【答案解析】