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