python中使用mongo中的_id(ObjectId)

在Python中导入ObjectId

from bson.objectid import ObjectId
a = [ObjectId('5bd184790640307f2515c99e'), ObjectId('5bd184790640307f2515c99f')]
# map(lambda x: x.toString(), a)
str(a)

你可能感兴趣的:(Tips,Mongo)