sys.path 返回一个列表,是python的默认搜索路径。当要导入的模块不在搜索路径中时,能够经过这个列表的 append 方法和 insert 方法添加python
sys.modules 是一个词典,是当前导入的全部模块和物理地址,模块名称是 key, 物理地址是 valueapp