python中 [Errno 2] No such file or directory问题终于解决了

在这里插入图片描述
python中 [Errno 2] No such file or directory问题终于解决了_第1张图片
在读取文件时一直失败,文件路径没问题,文件名没问题
后来随便试了一下,在写路径时,文件名后面不要加后缀,如下:
with open(“C:\Users\lvlei\PycharmProjects\pythonProject\pi_digits”) as file_object:
contents = file_object.read()
print contents

另外,我用的是python2.7,希望能帮到大家^^

你可能感兴趣的:(python)