关于获取当前目录路径的问题
python小白,想要通过获取当前文件所在目录的路径再往路径下添加该目录下的其他文件(txt文件),目录名称为QASystemOnMedicalKG,当前py文件名称为question_classifier
http://p2.so.qhmsg.com/t02ef878f7b01ea42b5.jpg
question_classifier的部分代码如下
class QuestionClassifier:
def __init__(self):
cur_dir = '/'.join(os.path.abspath(__file__).split('\\')[:-1])
# 特征词路径
self.disease_path = os.path.join('C:/Users/xuxia/Desktop/collect/medical/QASystemOnMedicalKG/dict/disease.txt')
print(self.disease_path)
self.department_path = os.path.join(cur_dir, 'dict/department.txt')
print(self.department_path)
然而disease_path这种直接写上是可以的
department_path这种就不可以了
http://p2.so.qhmsg.com/t023595fa662da077e0.jpg
求告知该怎么写department_path 才可以达到disease_path的效果
占 ??? 你能打印一次 cur_dir 的结果出来看看吗? Twilight6 发表于 2020-7-21 17:25
你能打印一次 cur_dir 的结果出来看看吗?
C:/Users/xuxia/Desktop/collect/medical/QASystemOnMedicalKG
是这样的 栗粒粒 发表于 2020-7-21 17:54
C:/Users/xuxia/Desktop/collect/medical/QASystemOnMedicalKG
是这样的
这两种路径都是可以正常使用的,一定要改吗?那就不用 os.path.join 呗,直接拼接
Twilight6 发表于 2020-7-21 18:00
这两种路径都是可以正常使用的,一定要改吗?那就不用 os.path.join 呗,直接拼接
因为很多行代码都得用到当前文件的目录,所以还是想试试join拼接
页:
[1]