PHP
·
发表于 5年以前
·
阅读量:8280
>>> fil = filter(lambda x: x>10,[1,11,2,45,7,6,13])
>>> for e in fil:
print(e)
11
45
13