我无法使用上下文管理器(带有)读取文件

时间:2019-03-14 16:08:04

标签: python with-statement

使用以下代码:

<buttons-group v-bind:buttonsGroup="iconButtons"></buttons-group>

我收到此错误

with open("sd1file.txt",'r') as testfile:
    file_contents = testfile.read
    print (file_contents)

我可以使用 <built-in method read of _io.TextIOWrapper object at 0x02EEB4B0> 等没有问题 即文件存在并且可以访问,即可以读写。

我需要导入一些模块吗?

1 个答案:

答案 0 :(得分:3)

您没有调用方法

file_contents = testfile.read()