1、打开Python3.7交互界面

2、定义字符串变量
str = 'this is a encode and decode test'

3、用encode()方法进行GBK编码
newStr = str.encode('GBK')

4、打印输出

5、同时我可以对newStr进行解码
newStr.decode('AsCII')

1、1.encode()进行编码
2.decode()进行解码
3.编解码尽量保持一致
时间:2026-02-12 18:24:59
1、打开Python3.7交互界面

2、定义字符串变量
str = 'this is a encode and decode test'

3、用encode()方法进行GBK编码
newStr = str.encode('GBK')

4、打印输出

5、同时我可以对newStr进行解码
newStr.decode('AsCII')

1、1.encode()进行编码
2.decode()进行解码
3.编解码尽量保持一致