នៅ​ក្នុង​ប្រតិបត្តិការ​ជា​ច្រើន មាន​ដូច​ជា​ការស្រង់​យក​ទិន្នន័យ មក​ប្រើប្រាស់​ជាដើម យើង​អាច​កំណត់ចំនួន document បាន​ដោយ​​យក​ method ឈ្មោះ limit() មក​ប្រើប្រាស់​ដូច​ខាង​ក្រោម​នេះ៖

 

from pymongo import MongoClient
 
myclient = MongoClient("mongodb+srv://username:mypassword@cluster0-y0whw.gcp.mongodb.net/test?retryWrites=true&w=majority")
mydb = myclient["mydatabase"]
mycol = mydb["customers"]
 
myresult = mycol.find().limit(5)
 
#print the result:
for x in myresult:
  print(x)