-2
バイナリファイルとして保存されるtxtファイルを生成する方法を教えてください。 txtファイルをバイナリとしてPythonに保存します
バイナリファイルとして保存されるtxtファイルを生成する方法を教えてください。 txtファイルをバイナリとしてPythonに保存します
# 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)
はこれを読んウェブコントローラ内のファイルを呼び出すためのバイナリ(odoo)https://stackoverflow.com/questions/18815820/convert-string-to-binary-する必要があるといわれていますイン・パイソン –