1. 首页
  2. 数据库
  3. 其它
  4. python encode和decode的妙用

python encode和decode的妙用

上传者: 2021-01-01 01:59:50上传 PDF文件 30.42KB 热度 11次
>>> “hello”.encode(“hex”) ‘68656c6c6f’ 相应的还可以 >>> ‘68656c6c6f’.decode(“hex”) ‘hello’ 查了一下手册,还有这些codec可用 Codec Aliases Operand type Purpose base64_codec base64, base-64 byte string Convert operand to MIME base64 bz2_codec bz2 byte string Compress the operand using bz2 hex_codec hex byte st
用户评论