Énumérez le contenu d'un package Python
import numpy
print(dir(numpy))
#Another example
from matplotlib import pyplot as plt
print(dir(matplotlib))
Coderunner
import numpy
print(dir(numpy))
#Another example
from matplotlib import pyplot as plt
print(dir(matplotlib))