Python教程

python_hashlib_learning

本文主要是介绍python_hashlib_learning,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
# author: Roy.G
import hashlib
m=hashlib.md5()
n=hashlib.md5()
y3="郭彦华"+"徐敏"

y5="郭彦华徐敏"
n.update(y5.encode("utf-8"))
# m.update(y4.encode("utf-8"))
m.update(y3.encode("utf-8"))
print(n.hexdigest())
print(m.hexdigest())
# print(m.hexdigest())
# y1="郭"
# y1=y1.encode("utf-8")
# print(y1)
# y2=m.update(y1)
# print(y2)
# print(y2.hexdigest())
这篇关于python_hashlib_learning的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!