2017-08-31 15 views
-2

バイナリファイルとして保存されるtxtファイルを生成する方法を教えてください。 txtファイルをバイナリとしてPythonに保存します

+0

はこれを読んウェブコントローラ内のファイルを呼び出すためのバイナリ(odoo)https://stackoverflow.com/questions/18815820/convert-string-to-binary-する必要があるといわれていますイン・パイソン –

答えて

1
# read textfile into string 
with open(“mytxtfile.txt”, “r”) as txtfile 
    mytextstring = txtfile.read() 

# change text into a binary array 
binarray = ' '.join(format(ch, 'b') for ch in bytearray(mytextstring)) 

# save the file 
with open(binfileName, 'br+') as binfile: 
    binfile.write(binarray) 
関連する問題