我是靠谱客的博主 苗条羊,最近开发中收集的这篇文章主要介绍Python错误集锦:读写文件时提示UnsupportedOperation: not readable,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

原文链接:http://www.juzicode.com/archives/2745

错误提示:

读写文件时提示UnsupportedOperation: not readable

#juzicode.com/vx:桔子code
fileobj=open('example-r.txt','r')
cont = fileobj.read()
print(cont)

fileobj=open('example-w.txt','w')
cont = fileobj.read()
print(cont)
juzicode.com
---------------------------------------------------------------------------
UnsupportedOperation                      Traceback (most recent call last)
<ipython-input-12-428692d8231a> in <module>
      5 
      6 fileobj=open('example-w.txt','w')
----> 7 cont = fileobj.read()
      8 print(cont)

UnsupportedOperation: not readable

 

可能原因:

1、打开example-w.txt是以只写方式打开的,再用read()方法读文件会报错。

 

解决方法:

1、如果文件只写入文件,不能使用read()方法。或者使用追加方式’a+’打开文件,可以先读文件,再写入文件。文件读写操作可参考:Python进阶教程m2–文件读写

#juzicode.com/vx:桔子code
with open('example-w.txt','a+',encoding='utf8') as fileobj:
    posi = fileobj.tell()  #获取当前文件指针位置
    print('tell():',posi)
    fileobj.seek(0)      #文件指针指向开始位置
    content=fileobj.read()
    print('read():n',content)  

最后

以上就是苗条羊为你收集整理的Python错误集锦:读写文件时提示UnsupportedOperation: not readable的全部内容,希望文章能够帮你解决Python错误集锦:读写文件时提示UnsupportedOperation: not readable所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部