នៅក្នុងប្រតិបត្តិការជាច្រើន មានដូចជាការស្រង់យកទិន្នន័យ មកប្រើប្រាស់ជាដើម យើងអាចកំណត់ចំនួន 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)