Import pythonsyspath附加&;插入

Import pythonsyspath附加&;插入,import,operating-system,sys,Import,Operating System,Sys,我在文件夹a和b中有两个同名的python脚本test_def.py 在文件夹a的测试_def.py中: *def hello_function(): print ('hello! aaa')* 在文件夹b的测试_def.py中: *def hello_function(): print ('hello! 'bbb')* #案例1 #你好!!aaa #案例2 #你好!!bbb #案例3 #你好!!aaa 有人能告诉我在上述三种情况下阅读脚本的python搜索的区别吗

我在文件夹a和b中有两个同名的python脚本test_def.py

在文件夹a的测试_def.py中:

*def hello_function():
    print ('hello!   aaa')*
在文件夹b的测试_def.py中:

*def hello_function():
    print ('hello!   'bbb')*
#案例1

#你好!!aaa

#案例2

#你好!!bbb

#案例3

#你好!!aaa

有人能告诉我在上述三种情况下阅读脚本的python搜索的区别吗

*os.chdir(folder a)
sys.path.append(folder b")
from test_def import *
hello_function()*
os.chdir(folder a)
sys.path.insert(1, folder b)/ or sys.path.insert(0, folder b)
from test_def import *
hello_function()
os.chdir(folder a)
from test_def import *
sys.path.insert(1, folder b)/ or sys.path.insert(0, folder b)
from test_def import *     #import again
hello_function()