import random
print(random.__file__)
import numpy
# 方法一:
print(numpy.__file__)
# 方法二:
print(numpy.__path__)
# 方法三:
# 在 cmd 中输入 pip list/ pip freeze, 查看该包是否是使用 pip 安装的,如果是,则可以使用 pip show 查看其位置
pip show numpy
where python