Python內(nèi)置hashlib模塊來(lái)獲取文件MD5值

admin Python評(píng)論393字?jǐn)?shù) 264閱讀模式
1. 導(dǎo)入hashlib模塊
import hashlib

2. 打開(kāi)文件并讀取內(nèi)容
with open('file.txt', 'rb') as f:
    content = f.read()

3. 計(jì)算MD5值
md5 = hashlib.md5(content).hexdigest()

完整代碼如下:

import hashlib
with open('file.txt', 'rb') as f:
    content = f.read()
md5 = hashlib.md5(content).hexdigest()
print(md5)

其中,'file.txt'為要獲取MD5值的文件路徑。

版權(quán)聲明:文章圖片資源來(lái)源于網(wǎng)絡(luò),如有侵權(quán),請(qǐng)留言刪除!!!
廣告也精彩
admin
  • 本文由 發(fā)表于 2023年5月13日 17:37:29
  • 轉(zhuǎn)載請(qǐng)務(wù)必保留本文鏈接:http://yudch.cn/10599.html
匿名

發(fā)表評(píng)論

匿名網(wǎng)友 填寫(xiě)信息

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: