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)
As I open file above in python 3, the path is too long and I want to break it two lines. But I tried several ways like adding""" , they won't work. So how do I break the path into two lines?