- 解决方法有好多:
更多解决方法请参考:
http://cn.voidcc.com/question… 我只提供一种简单的,速度相对快的:
python的高级函数,没错思想就是集合去重。
from functools import reduce #python3需要 reduce( lambda all_keys, rec_keys: all_keys | set(rec_keys), map(lambda d: d.keys(), cursor.find()), set() )
我只提供一种简单的,速度相对快的:
python的高级函数,没错思想就是集合去重。
from functools import reduce #python3需要
reduce(
lambda all_keys, rec_keys: all_keys | set(rec_keys),
map(lambda d: d.keys(), cursor.find()),
set()
)