demo_python_mongodb_check_collection_1.py:
x
 
import pymongo
myclient = pymongo.MongoClient('mongodb://localhost:27017/')
mydb = myclient['mydatabase']
mycol = mydb["customers"]
print(mydb.list_collection_names())
python@w3school.org.cn:/home/python#python demo_python_mongodb_check_collection_1.py
['customers']