demo_python_mongodb_check_collection_2.py:
x
 
import pymongo
myclient = pymongo.MongoClient('mongodb://localhost:27017/')
mydb = myclient['mydatabase']
collist = mydb.list_collection_names()
if "customers" in collist:
  print("The collection exists.")
python@w3school.org.cn:/home/python#python demo_python_mongodb_check_collection_2.py
The collection exists.