使用的版本
对于import xxx操作,相对路径为sys.path
对于open("test.txt",'r')文件打开操作,相对路径为os.getcwd()
对于terminal而言,python dir/abc.py
其import默认相对路径sys.path[0] == dir/(即当前abc.py文件所在目录)
os.getcwd() == 当前terminal目录 == open("test.txt",'r')相对路径