Python取16位MD5 发表评论 使用如下代码即可 import hashlib md5 = hashlib.md5() md5.update('test') hash= md5.hexdigest()[8:-8];