html tool

2024年7月15日星期一

转:base64模块的b64encode函数

参考:https://blog.csdn.net/csdn1e/article/details/113248749

b64encode 主要是对Base64对bytes-like 类型对象进行编码,并返回bytes对象

import base64

st= "addpython"

st= bytes(st,encoding="utf-8")

base64.b64encode(st)


没有评论:

发表评论