W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
demo_python_mongodb_drop_collection.py:
import pymongo myclient = pymongo.MongoClient("mongodb://localhost:27017/") mydb = myclient["mydatabase"] mycol = mydb["customers"] mycol.drop()
[email protected]
:/home/python#python demo_python_mongodb_drop_collection.py