2017-09-03 7 views

答えて

1

はい。生のバイナリデータとして読むと、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

そして、次を参照してください。それは仲間ありがとう働い

関連する問題