1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Python > ファイルI/O > CR,LF付文字列のwrite()時に余分なCRが追加されてCR,CR,LFになる > 仕様通り

Last updated at Posted at 2019-06-03
動作環境
Windows 10 Pro v1809
Anaconda v2019.03
Jupyter Notebook v5.7.8
Python v3.7.3 

概要

  • CR, LF付文字列をwrite()したときにCR, CR, LFとして書出される

コード

with open('test_190603.txt', 'w') as wfp:
    wfp.write("AAAA" + "\r\n")
    wfp.write("AAAA" + "\r\n")
    wfp.write("AAAA" + "\r\n")

出力ファイルの構造

windows > バイナリエディタ > 構造体の情報を得る
にある
Binary Editor BZで確認

2019-06-03_16h54_14.png

CR(0x0D)が余分にある。

関連

下記(2016年の情報)に近い症状のようだ。
バイナリ書出しで対処されている。

不可解な点

  • もともとCR,LF付の文字列をreadline()してからwrite()した時には余分なCRはつかない
  • CR, LFをつけた文字列をwrite()した時に余分なCRがつく

備考

  • open()時のnewline指定では解消しなかった

対処

文字列 + CR, LF
ではなく
文字列 + LF
でwrite()すると
文字列 + CF, LFとして書込まれた。

ただし、将来Pythonのバージョンが上がったときに不具合修正がされると、振舞いが変わるだろう。

仕様通り

(追記 2019-06-03)

@c-yan さんのコメントにてPythonの仕様について言及されています。

仕様書通りなのですね。

情報感謝です。

ファイル読書き

Windowsにおいて、CR, LFのファイルに対して下記となる。

  • 読込み: CR, LFはLFに変換
  • 書出し: LFはCR, LFに変換
1
1
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?