
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
아까 즉문즉답 , 추가해서 해결 했는데
DB 들어가니까 저렇게 뜨네요 ㅠㅠ 어떻게 해결하나요

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