您好,登錄后才能下訂單哦!
使用Python怎么生成MD5值?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
具體如下:
# -*- coding:utf-8 -*- import datetime # NO.1 使用MD5 import md5 src = 'this is a md5 test.' m1 = md5.new() m1.update(src) print m1.hexdigest()
運行結果:
174b086fc6358db6154bd951a8947837
# -*- coding:utf-8 -*- # NO.2 使用hashlib import hashlib src = 'this is a md5 test.' m2 = hashlib.md5() m2.update(src) print m2.hexdigest()
運行結果:
174b086fc6358db6154bd951a8947837
對于同一個字符串而言,使用MD5和使用hashlib生成的MD5值是一樣的
以下是使用file+時間戳生成一個唯一的MD5值
# -*- coding:utf-8 -*- import md5 import time now = 'file'+str(time.time()) print now,type(now) m0 = md5.new() m0.update(now) print m0.hexdigest()
運行結果:
file1556241051.38 <type 'str'>
efdc1e1d6bbe949afb2cd0250d0244d2
############### 封裝成函數 ############################### # -*- coding:utf-8 -*- import time import hashlib src = 'file'+str(time.time()) print src,type(src) m2 = hashlib.md5() m2.update(src) file_id = m2.hexdigest() print file_id,type(file_id) def make_file_id(src): m1 = hashlib.md5() m1.update(src) return m1.hexdigest() src = 'filed_46546546464631361sdfsdfgsdgfsdgdsgfsd'+str(time.time()) print make_file_id(src)
運行結果:
file1556241114.08 <type 'str'>
4d826f2298853d5f5ae209d6bf754b62 <type 'str'>
e6c5ad9dd0fa4f3d141f94b7c990710e
Python是一種編程語言,內置了許多有效的工具,Python幾乎無所不能,該語言通俗易懂、容易入門、功能強大,在許多領域中都有廣泛的應用,例如最熱門的大數據分析,人工智能,Web開發等。
關于使用Python怎么生成MD5值問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。