简体   繁体   中英

Write python file with various asci codes

I would like to write a python file containing four bytes:

  • A space
  • A tab
  • A carriage return
  • A newline

I'm not able to write it as:

open('file.txt', 'w').write(' \t\r\n')

As for whatever reason it's converting the \r into a \n . How would I then write this as the asci codes themselves? that is:

NEWLINE = 10
CARRIAGE = 13
SPACE = 32
TAB = 9
open('file.txt','wb').write(bytearray([SPACE, TAB, CARRIAGE, NEWLINE]))

Open the file in binary mode and write a byte string.

open('file.txt', 'wb').write(b' \t\r\n')

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM