Gxlsystem TIY Editor
Gxlsystem 在线教程
改变方向
暗黑模式
demo_python_mongodb_check_collection_1.py:
import pymongo myclient = pymongo.MongoClient('mongodb://localhost:27017/') mydb = myclient['mydatabase'] mycol = mydb["customers"] print(mydb.list_collection_names())
C:\Users\My Name>python demo_python_mongodb_check_collection_1.py
['customers']