
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
from pymongo import MongoClient
client = MongoClient('mongodb+srv://sprta:test@cluster0.neirhht.mongodb.net/?retryWrites=true&w=majority')
db = client.dbsparta
doc = {
'name':'영수',
'age':24
}
db.users.insert_one(doc)
vscode에 입력하고 저장 후에 Browse Collections 눌렀는데

이렇게만 나오는데 어떻게 해야 다음으로 넘어갈 수 있나요?
