易用常用的小知识点
Posted qinsungui921112
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了易用常用的小知识点相关的知识,希望对你有一定的参考价值。
一、关于字符串转为二进制数据的方法
方法:
b‘hello‘ 与 ‘hello’.encode(‘utf-8‘) 作用相同
import hashlib md = hashlib.md5() # 生成一个造密文的对象 val = ‘啦啦啦啦‘ # 加盐处理 md.update(val.encode(‘utf-8‘)) # md.update(‘hello‘.encode(‘utf-8‘)) # 将字符串转为二进制形式 md.update(b‘hello‘) # Bytes类型也就是二进制形式, b‘hello‘ 与 ‘hello‘.encode(‘utf-8‘) 作用是一样的 res = md.hexdigest() print(res)
以上是关于易用常用的小知识点的主要内容,如果未能解决你的问题,请参考以下文章