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