python3 base64

import base64

s=‘hello world‘
bytes_by_s=s.encode() #将字符串编码-->字节码,
b64_encode_bytes=base64.b64encode(bytes_by_s) #base64编码
print(b64_encode_bytes)


b64_decode_bytes=base64.b64decode(b64_encode_bytes) #base64解码
print(b64_decode_bytes)
s_by_bytes=b64_decode_bytes.decode() #字节码解码-->字符串
print(s_by_bytes)

输出

b‘aGVsbG8gd29ybGQ=‘
b‘hello world‘
hello world

 

base64更改编码表:

mg_base=  "tuvwxTUlmnopqrs7YZabcdefghij8yz0123456VWXkABCDEFGHIJKLMnopQRS9+/="

std_base= "ABCDEFGHIJKLMnopQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="

trantab = str.maketrans(std_base,mg_base) # 制作翻译表

import base64

s=‘hello world‘
bytes_by_s=s.encode()
b64_encode_bytes=base64.b64encode(bytes_by_s)
print(b64_encode_bytes)

mgs=b64_encode_bytes.decode().translate(trantab)
print(mgs)


输出

b‘aGVsbG8gd29ybGQ=‘iUdCjUS1yM9IjUY=

相关文章

功能概要:(目前已实现功能)公共展示部分:1.网站首页展示...
大体上把Python中的数据类型分为如下几类: Number(数字) ...
开发之前第一步,就是构造整个的项目结构。这就好比作一幅画...
源码编译方式安装Apache首先下载Apache源码压缩包,地址为ht...
前面说完了此项目的创建及数据模型设计的过程。如果未看过,...
python中常用的写爬虫的库有urllib2、requests,对于大多数比...