Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Windows 7 を使用しています。
myfile = open("matedata.txt", "a+") print myfile.readline() myfile.write("1") myfile.close()
そして、これは機能しません。
myfile.write("1") IOError: [Errno 0] Error
Python でファイルを開くときは、必要なアクセスの種類 (読み取り、書き込み、または追加) を指定する必要があります。
「+」は、存在しない場合の更新/新規作成を意味します。
ファイルを開き、同じ FD (ファイルディスクレプター) で読み取りと書き込みの両方を実行しようとすると、IOError が発生します。