0
画像やオーディオ、ビデオ、またはpdfのような他のファイルを任意の辞書やPythonのファイルに保存できますか?はいの場合は、それを行う方法を教えてください。Pythonの基本Q - ファイルとデータ
画像やオーディオ、ビデオ、またはpdfのような他のファイルを任意の辞書やPythonのファイルに保存できますか?はいの場合は、それを行う方法を教えてください。Pythonの基本Q - ファイルとデータ
はい。生のバイナリデータとして読むと、Pythonは気にしません。
with open("/path/to/file.foo", "rb") as file_descriptor1:
file_content_bytes = file_descriptor1.read()
# The "with" block will close the file descriptor for you
my_dictionary = { "file.foo": file_content_bytes }
参照:https://docs.python.org/2/library/functions.html#open
そして、次を参照してください。それは仲間ありがとう働い
https://docs.python.org/2/library/stdtypes.html#bltin-file-objects –