
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
pymongo로 db조작하기 강의를 보며 따라하고 있는데 실행을 했을 때 오류메시지는 안뜨지만 강사님과 같게 나오지는 않습니다.

강사님은 이런 결과가 나오는데

저는 이렇게 뜹니다.
작성한 코드 및 에러 메세지
from pymongo import MongoClient
import certifi
ca = certifi.where()
client = MongoClient('mongodb+srv://test:sparta@cluster0.zra4oag.mongodb.net/Cluster0?retryWrites=true&w=majority', tlsCAFile=ca)
db = client.dbsparta
all_users = list(db.users.find({}))
for user in all_users:
print(user)
