共计 520 个字符,预计需要花费 2 分钟才能阅读完成。
在 Python 中,可以使用 base64 模块来对数据进行 base64 编码和解码。base64 模块提供了多个方法来实现这些功能,以下是一些常用的方法:
- base64.b64encode(data):对 data 进行 base64 编码。
- base64.b64decode(s):对 base64 编码的字符串 s 进行解码。
- base64.urlsafe_b64encode(data):对 data 进行 URL 安全的 base64 编码。
- base64.urlsafe_b64decode(s):对 URL 安全的 base64 编码的字符串 s 进行解码。
示例代码:
import base64
# 对字符串进行 base64 编码
data = b'hello world'
encoded_data = base64.b64encode(data)
print(encoded_data)
# 对 base64 编码的字符串进行解码
decoded_data = base64.b64decode(encoded_data)
print(decoded_data)
注意:base64 编码后的字符串会比原始数据稍长,因为 base64 编码是将 3 个字节的数据转换为 4 个字符。
丸趣 TV 网 – 提供最优质的资源集合!
正文完