要查看Python字符串的編碼,可以使用字符串對(duì)象的encode()
方法。該方法將字符串編碼為指定的編碼格式,并返回一個(gè)字節(jié)數(shù)組。可以使用decode()
方法將字節(jié)數(shù)組解碼為字符串。
以下是一個(gè)示例:
str = "你好"
encoded_str = str.encode("utf-8")
print(encoded_str) # b'\xe4\xbd\xa0\xe5\xa5\xbd'
decoded_str = encoded_str.decode("utf-8")
print(decoded_str) # 你好
在上述示例中,str
是一個(gè)包含中文字符的字符串。使用encode()
方法將其編碼為UTF-8格式。編碼后的字符串為b'\xe4\xbd\xa0\xe5\xa5\xbd'
,其中\x
表示十六進(jìn)制值。然后使用decode()
方法將字節(jié)數(shù)組解碼為字符串,并獲得原始的中文字符串。
要查看字符串的當(dāng)前編碼格式,可以使用sys.getdefaultencoding()
函數(shù)。該函數(shù)返回Python解釋器當(dāng)前默認(rèn)的字符串編碼格式。
import sys
print(sys.getdefaultencoding()) # utf-8
上述示例中,sys.getdefaultencoding()
函數(shù)返回的是UTF-8編碼格式。