sys.path是Python解释器在查找模块时搜索的路径列表,当你使用importmy_module时,Python就会按照sys.path中列出的顺序,依次在这些目录里寻找my_module.py或my_modu...