Python 字符串 decode() 方法



Python 字符串的 decode() 方法使用为其编码注册的编解码器解码字符串。可以使用此函数解码编码的字符串并获得原始字符串。此函数的工作原理基于指定的参数,即编码和错误。

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

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

语法

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

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

参数

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

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

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

返回值

Python 字符串 decode() 方法返回解码后的字符串。

示例

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

在下面的示例中,创建一个字符串“Hello! Welcome to Tutorialspoint.”,并使用 encode() 函数对其进行编码。现在获取编码的字符串,并对该字符串调用 decode() 函数。获得解码后的字符串作为输出,并使用 print() 函数打印它。在这两种情况下,使用的编码都是 'utf_16',使用的错误是 'strict'。

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

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

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'
The decoded string is:  Hello! Welcome to Tutorialspoint.

示例

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

在下面的示例中,创建一个字符串“Hello! Welcome to Tutorialspoint.”,并使用 encode() 函数对其进行编码。现在获取编码的字符串,并对该字符串调用 decode() 函数,获得解码后的字符串作为输出,并使用 print() 函数打印它。在这两种情况下,使用的编码都是 'euc_kr',使用的错误是 'strict'。

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

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

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

示例

将 'utf_32' 作为其编码的 Python 字符串 decode() 方法执行可变长度编码。如果错误指定为 'replace',则它将被替换字符替换。这是在 replace_errors() 中实现的。

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

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

执行上述程序后,得到以下输出:

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'
The decoded string is:  Hello! Welcome to Tutorialspoint.

示例

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

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

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

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

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.'
The decoded string is:  Hello! Welcome to Tutorialspoint.

示例

Python 字符串 `decode()` 函数在没有参数的情况下,会使用默认的编码值并相应地执行。

在下面的例子中,创建了一个字符串 "Hello! Welcome to Tutorialspoint.",并使用没有参数的 `encode()` 函数对其进行编码。然后,使用没有参数的 `decode()` 函数对编码后的字符串进行解码,并将解码后的字符串作为输出打印出来。

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

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

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