常用标准库 简介hashlib(哈希) 简介 hashlib(哈希) import hashlib m = hashlib.md5() #创建hash对象, print(m) m.update('itcast') print(m.hexdigest()) 这部分只是简介。。。。