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()函数的主要内容,如果未能解决你的问题,请参考以下文章