怎么查找Python模块的用法说明及模块文件位置?
1)
help('模块名'): 是看模块说明的
2) 查位置:
import sys
sys.modules['模块名']
其实全都在 .../lib/