运行结果尺寸: 625 x 591
x
 
import pymongo
myclient = pymongo.MongoClient('mongodb://localhost:27017/')
mydb = myclient['mydatabase']
mycol = mydb["customers"]
# collection created!
C:\Users\My Name>python demo_mongodb_create_collection.py