Python 字符串 encode() 方法



Python 字符串的 encode() 方法使用为其编码注册的编解码器对字符串进行编码。此函数基于指定的参数(编码和错误)工作。

有各种类型的标准编码,例如 base64、ascii、gbk、hz、iso2022_kr、utf_32、utf_16 等等。根据指定的编码,字符串被编码。在此过程中,可以使用 errors 参数设置不同的错误处理方案。最后,此方法返回编码后的字符串。

在下一节中,我们将学习有关 Python 字符串 encode() 方法的更多详细信息。

语法

Python 字符串 encode() 方法的语法如下所示。

Str.encode(encoding='UTF-8',errors='strict')

参数

以下是 Python 字符串 encode() 函数的参数。

  • encoding − 此参数指定要使用的编码。有关所有编码方案的列表,请访问:标准编码。

  • errors − 此参数指定错误处理方案。errors 的默认值为 'strict',这意味着编码错误会引发 UnicodeError。其他可能的值为 'ignore'、'replace'、'xmlcharrefreplace'、'backslashreplace' 以及通过 codecs.register_error() 注册的任何其他名称。

返回值

Python 字符串 encode() 方法返回一个编码后的字符串。

示例

将 'utf_16' 作为其编码的 Python 字符串 encode() 方法执行可变长度编码。如果错误指定为 'strict',则编码错误将引发 UnicodeError。

在以下示例中,创建了一个字符串 "Hello! Welcome to Tutorialspoint.",并使用 encode() 函数对其进行编码。编码后的字符串使用 print() 函数作为输出打印。在这种情况下,使用的编码是 'utf_16',使用的错误是 'strict'。

str="Hello! Welcome to Tutorialspoint."
str_encoded= str.encode('utf_16','strict')
print("The encoded string is: ", str_encoded)

执行上述程序后,将生成以下输出 -

The encoded string is:  b'\xff\xfeH\x00e\x00l\x00l\x00o\x00!\x00 \x00W\x00e\x00l\x00c\x00o\x00m\x00e\x00 \x00t\x00o\x00 \x00T\x00u\x00t\x00o\x00r\x00i\x00a\x00l\x00s\x00p\x00o\x00i\x00n\x00t\x00.\x00'

示例

Python 字符串的 encode() 方法,当使用 'euc_kr' 作为编码时,会对韩文字符进行变长编码。如果错误指定为 'strict',则编码错误会引发 UnicodeError。

在以下示例中,创建了一个字符串 "Hello! Welcome to Tutorialspoint.",并使用 encode() 函数对其进行编码。使用 print() 函数打印编码后的字符串作为输出。在这两种情况下,使用的编码都是 'euc_kr',使用的错误处理都是 'strict'。

str="Hello! Welcome to Tutorialspoint."
str_encoded= str.encode('euc_kr','strict')
print("The encoded string is: ", str_encoded)

执行上述程序后获得的输出如下:

The encoded string is:  b'Hello! Welcome to Tutorialspoint.'

示例

Python 字符串的 encode() 方法,当使用 'utf_32' 作为编码时,会进行变长编码。如果错误指定为 'replace',则会用替换标记替换。这在 replace_errors() 中实现。

在以下示例中,创建了一个字符串 "Hello! Welcome to Tutorialspoint.",并使用 encode() 函数对其进行编码。使用 print() 函数打印编码后的字符串作为输出。在这两种情况下,使用的编码都是 'utf_32',使用的错误处理都是 'replace'。

str="Hello! Welcome to Tutorialspoint."
str_encoded= str.encode('utf_32','replace')
print("The encoded string is: ", str_encoded)

执行上述程序后获得的输出如下:

The encoded string is:  b'\xff\xfe\x00\x00H\x00\x00\x00e\x00\x00\x00l\x00\x00\x00l\x00\x00\x00o\x00\x00\x00!\x00\x00\x00 \x00\x00\x00W\x00\x00\x00e\x00\x00\x00l\x00\x00\x00c\x00\x00\x00o\x00\x00\x00m\x00\x00\x00e\x00\x00\x00 \x00\x00\x00t\x00\x00\x00o\x00\x00\x00 \x00\x00\x00T\x00\x00\x00u\x00\x00\x00t\x00\x00\x00o\x00\x00\x00r\x00\x00\x00i\x00\x00\x00a\x00\x00\x00l\x00\x00\x00s\x00\x00\x00p\x00\x00\x00o\x00\x00\x00i\x00\x00\x00n\x00\x00\x00t\x00\x00\x00.\x00\x00\x00'

示例

Python 字符串的 encode() 方法,当使用 'utf_32' 作为编码时,会进行变长编码。如果错误指定为 'backslashreplace',则会实现 'backslashreplace' 错误处理。

在以下示例中,创建了一个字符串 "Hello! Welcome to Tutorialspoint.",并使用 encode() 函数对其进行编码。使用 print() 函数打印编码后的字符串作为输出。在这两种情况下,使用的编码都是 'utf_16_be',使用的错误处理都是 'backslashreplace'。

str="Hello! Welcome to Tutorialspoint."
str_encoded= str.encode('utf_16_be','backslashreplace')
print("The encoded string is: ", str_encoded)

执行上述程序后,显示以下输出:

The encoded string is:  b'\x00H\x00e\x00l\x00l\x00o\x00!\x00 \x00W\x00e\x00l\x00c\x00o\x00m\x00e\x00 \x00t\x00o\x00 \x00T\x00u\x00t\x00o\x00r\x00i\x00a\x00l\x00s\x00p\x00o\x00i\x00n\x00t\x00.'

示例

Python 字符串的 encode() 函数,如果没有传递任何参数,则会使用默认的编码值并相应地执行。

在以下示例中,创建了一个字符串 "Hello! Welcome to Tutorialspoint.",并使用 encode() 函数(不带任何参数)对其进行编码。使用 print() 函数打印编码后的字符串作为输出。

str="Hello! Welcome to Tutorialspoint."
str_encoded= str.encode()
print("The encoded string is: ", str_encoded)

上述程序的输出如下所示:

The encoded string is:  b'Hello! Welcome to Tutorialspoint.'
python_strings.htm
广告