Skip to content

Base64转换

更新: 2025/9/9 字数: 0 字 时长: 0 分钟

由于Python自带的base64需要转换时要写的代码比较长,如果经常需要转换,可以写一个函数来简化操作。

Base64编码

python
from sch.util.base64 import base64_encode

text = base64_encode('hello world')
print(text)
输出

aGVsbG8gd29ybGQ=

Base64解码

python
from sch.util.base64 import base64_decode

text = base64_decode('aGVsbG8gd29ybGQ=')
print(text)
输出

hello world