-6
我有一個二進制文件(link),我想打開並閱讀Python的內容。這些二進制文件如何用Python打開和讀取?任何用於此類操作的特定模塊。如何在Python中打開和讀取二進制文件?
我有一個二進制文件(link),我想打開並閱讀Python的內容。這些二進制文件如何用Python打開和讀取?任何用於此類操作的特定模塊。如何在Python中打開和讀取二進制文件?
這裏是一個〔實施例:看是否有此幫助,讓我知道
with open('somefile.bin', 'rb') as f:#the second paramenter "rb"is used only when reading Binary Files. Term "rb" stands for Read binary
data = f.read() # in here we are assigning a variable which will read whatever in the file and it will be stored in the variable called "Data"
print(data)
的「B」標誌將得到蟒蛇的文件當作二進制,所以不需要的模塊。你還沒有提供一個目標,讓Python讀取一個類似這樣的問題的二進制文件。
f = open('binaryfile', 'rb')
print(f.read())
這是可以用簡單的谷歌搜索找到的東西,所以不適合所以。查找'文件打開python' – TankorSmash
我假設你已閱讀python手冊或/和谷歌搜索。那麼你獲得的信息中有什麼不清楚的地方呢? – Psytho
查看'struct'模塊。 –