python的encode()和decode()函数

Posted 万物小白

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python的encode()和decode()函数相关的知识,希望对你有一定的参考价值。

decode()函数的作用是用作解码,encode()函数是用作编码。

decode函数以encoding指定的编码格式解码字符串,默认是字符串编码。
语法是:
str.decode(encoding=‘utf-8‘)

encode函数以encoding指定的编码格式编码字符串。
语法是:
str.encode(encoding)
encoding指定要使用的编码。






以上是关于python的encode()和decode()函数的主要内容,如果未能解决你的问题,请参考以下文章

python decode和encode

Python关于decode和encode

python encode和decode函数说明

python的encode和decode误读总结

python3中encode和decode的一些基本用法

python字符串的encode和decode