python字符串编码解码

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2020/10/20 14:29
# @Author : 2436534
import base64

str1 = 'python 字符串编码解码'
# 转为 bytes
bytes_str1 = str1.encode(encoding="utf-8")
print(type(bytes_str1))
""
# 编码
encode_str1 = base64.b64encode(bytes_str1)
print(encode_str1.decode())
"cHl0aG9uIOWtl+espuS4sue8lueggeino+eggQ=="
# 解码
decode_str1 = base64.b64decode(encode_str1)
print(decode_str1.decode())
"python 字符串编码解码"

你可能感兴趣的:(draft,python,字符串,base64)