ComenzarEmpieza gratis

List databases and collections

It's always a good idea to know what databases exist on a server before you start querying. Let's get to it!

Este ejercicio forma parte del curso

Introduction to MongoDB in Python

Ver curso

Instrucciones del ejercicio

  • Print out all databases by calling the appropriate method on the client.
  • Print out all of the collections inside the film database.

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

from pymongo import MongoClient 
client = MongoClient()

# Print out the names of all databases in your server
print(____)

# Print out the names of all collection in the film database
print(____)
Editar y ejecutar código