当给Python脚本提供文件路径时,我发现自己经常不得不手动双击文件路径(因为转义字符)。我的问题:是否有一个内置的python函数/类/方法,或者表示转义字符不适用于有问题的字符串,或者只是为我扫描路径?
即
D:\MPhil\Model_Building\Models\TGFB\Vilar2006\Another_Fit_test\Fit15
成:
D:\\MPhil\\Model_Building\\Models\\TGFB\\Vilar2006\\Another_Fit_test\\Fit15
答案 0 :(得分:4)
你可以在字符串前加r,如下所示:
some_path = r"escape\codes\will\be\bypassed"