
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
유저스가 안나와서 다른분이 즉문즉답 올리신 내용 보고
똑같이 코드적용했는데도 여전히 안나와요ㅜㅜ
보고 계신 화면 전체를 캡
처해 주시면, 튜터님들이 빠르게 상황을 이해할 수 있어요.
작성한 코드 및 에러 메세지
from pymongo import MongoClient
import certifi
ca = certifi.where()
client = MongoClient('mongodb+srv://sparta:test@cluster0.ytx3xgq.mongodb.net/?retryWrites=true&w=majority', tlsCAFile=ca)
db = client.dbsparta
doc = {
'name':'영수',
'age':24
}
db.users.insert_one(doc)
