gpt4 book ai didi

windows - 语法错误使用 Windows 替换 ("\\", "\") 作为 Python 中的文件路径

转载 作者:可可西里 更新时间:2023-11-01 10:08:00 27 4
gpt4 key购买 nike

我正在尝试将路径分隔符的双正斜杠更改为单正斜杠。该程序读取一个文本文件,其中包含包含路径的文件列表。我也在使用 Windows 框。

f = open('C:/Users/visc/scratch/scratch_child/test.txt')

destination = ('C:/Users/visc')
# read input file line by line
for line in f:

line = line.replace("\\", "/")
#split the drive and path using os.path.splitdrive
(drive, path) = os.path.splitdrive(line)
#split the path and fliename using os.path.split
(path, filename) = os.path.split(path)
#print the stripped line
print line.strip()
#print the drive, path, and filename info
print('Drive is %s Path is %s and file is %s' % (drive, path, filename))

与:

  line = line.replace("\\", "/")

它工作正常但不是我想要的..但​​是如果我用反斜杠替换正斜杠,我会得到一个语法错误

最佳答案

反斜杠\是一个转义字符,表示它后面的字符应该被特殊解释。像\n 一样回车。如果单个反斜杠后面的字符不是用于解释的有效字符,则会出错。

反斜杠是解释单个反斜杠的有效字符。所以:

line = line.replace("\\", "/")

将用单个正斜杠替换单个反斜杠。要将双反斜杠转换为单反斜杠,请使用:

line = line.replace("\\\\", "\\")

关于windows - 语法错误使用 Windows 替换 ("\\", "\") 作为 Python 中的文件路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10525072/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com