- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我做了一个简单的程序,但是当我运行它时显示以下错误:
line1 = []
line1.append("xyz ")
line1.append("abc")
line1.append("mno")
file = open("File.txt","w")
for i in range(3):
file.write(line1[i])
file.write("\n")
for line in file:
print(line)
file.close()
File "C:/Users/Sachin Patil/fourth,py.py", line 18, in
for line in file:UnsupportedOperation: not readable
最佳答案
您正在以 "w"
的身份打开文件,代表可写。
使用 "w"
您将无法读取该文件。请改用以下内容:
file = open("File.txt","r")
此外,这里是其他选项:
"r" Opens a file for reading only.
"r+" Opens a file for both reading and writing.
"rb" Opens a file for reading only in binary format.
"rb+" Opens a file for both reading and writing in binary format.
"w" Opens a file for writing only.
"a" Open for writing. The file is created if it does not exist.
"a+" Open for reading and writing. The file is created if it does not exist.
关于python-3.x - Python 错误消息 io.UnsupportedOperation : not readable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44901806/
我制作了一个程序,它在 .txt 文件中存储附有名称的乐谱。但是,我想打印附在乐谱上的名称的字母顺序。但是当我运行程序时,它出现了错误 io.UnsupportedOperation: not wri
这个问题在这里已经有了答案: Python error message io.UnsupportedOperation: not readable (5 个答案) 关闭 4 个月前。 我正在研究一个
我在这个网站上搜索过类似的问题,但没有找到任何有效的解决方案,因此提出了这个问题。我正在编写一个 Python 3.4 程序,其中有一个函数 export,它本质上是将数据附加到文本文件。该函数检查以
我正在使用来自此链接的服务器和客户端程序:http://www.bogotobogo.com/python/python_network_programming_tcp_server_client_c
我正在开发一个 android 应用程序,我想在其中实现 GCM 功能。我能够实现并且它在 Android Kitkat 4.4 版本(在 Micromax 089 上测试)中运行良好。但不适用于An
我正在尝试学习如何在 python 中pickle 和保存一个对象。但是,当我使用 sample code下面我收到以下错误:io.UnsupportedOperation: read 可追溯到 fa
我做了一个简单的程序,但是当我运行它时显示以下错误: line1 = [] line1.append("xyz ") line1.append("abc") line1.append("mno") f
运行以下代码将引发 io.UnsupportedOperation 错误,因为文件以“写入”模式打开 - with open("hi.txt", "w") as f: print(f.read
出于某种原因,我收到了带有以下代码的 UnsupportedOpeationException。在调试器中检查它,看起来我调用 remove() 的对象是一个列表。 // to optimize, r
我在 Windows 10 环境中使用 python 3.5.2 解释器。 我根据 Google 的 Python 类(class)输入了以下几行: >>> import sys,os,codecs
我正在尝试在 xml 文件中进行 std。我从颠覆中读取了 xml 文件,更新了文件中的一行,现在我正在尝试使用 subporcess.Popen 和 stdin 创建一个 jenkins 作业 te
我收到这个错误:io.UnsupoortedOperation: read我做了一些改变。我将此行 img = Image.open(f) 更改为 img = Image.open(f, "rb")
我最近将我的项目升级到 Django 2.0,然后开始出现错误。首先,每当我启动 django runserver 时,我都会使用 django_gulp 来启动 gulp 进程。我正在使用 runs
我是一名优秀的程序员,十分优秀!