📜  列出一个包的内容 python 代码示例

📅  最后修改于: 2022-03-11 14:45:58.655000             🧑  作者: Mango

代码示例1
import numpy
print(dir(numpy))
#Another example
from matplotlib import pyplot as plt
print(dir(matplotlib))