使用以下代码:
<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>
等没有问题
即文件存在并且可以访问,即可以读写。
我需要导入一些模块吗?
答案 0 :(得分:3)
您没有调用方法
file_contents = testfile.read()