
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
Browse Collections를 눌러도 " Explore Your Data"라고 조회됩니다.


작성한 코드 및 에러 메세지
from pymongo import MongoClient
client = MongoClient('mongodb+srv://sparta:test@cluster0.ck1xgjf.mongodb.net/?retryWrites=true&w=majority')
db = client.dbsparta
doc = {
'name': '영수',
'age':24
}
db.users.insert_one(doc)
