Buat daftar isi paket 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))