如果文件路径太长,我该如何断行?

时间:2017-11-15 05:43:40

标签: python

file_path =('C:\\Users\\zlq\Desktop\\python_crash_course\\书籍资料
\\chapter_10\\pi_digits.txt')
with open(file_path) as file_object:
contents = file_object.read()
print(contents)

当我在python 3中打开上面的文件时,路径太长了,我想把它分成两行。 但我尝试了几种方法,例如添加""" ,他们不会工作。那么我该如何将路径分成两行呢?

0 个答案:

没有答案