
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
MongoDB에서 Browse Collections 확인하는 과정인데 오류를 어떻게 해결해야 할지 모르겠어요..

from pymongo import MongoClient
client = MongoClient('mongodb+srv://test:sparta@cluster0.69wr4gu.mongodb.net/Cluster0?retryWrites=true&w=majority')
db = client.dbsparta
doc = {
'name':'bob',
'age':27
}
db.users.insert_one(doc)
