1. ホーム
  2. スクリプト・コラム
  3. その他

[解決済み】Pythonエラーメッセージ io.UnsupportedOperation: not readable

2022-01-12 23:49:11

質問

コードは次のとおりです。

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.