decode和encode的區別和介紹

2021-10-21 18:20:06 字數 1212 閱讀 6090

by.decode(encoding='utf-8',errors='strict') 

str.encode(encoding='utf-8',errors='strict')

1 #!/usr/bin/env python

2 # -*- coding: utf-8 -*-

3 4 """

5 __title__ =

6 __time__ = 2020/2/21 15:56

7 8 """

9 # bytes轉字串方式一

10 b = b'\xe9\x80\x86\xe7\x81\xab'

11 string = str(b, 'utf-8')

12 print(string)

13 14 # bytes轉字串方式二

15 b = b'\xe9\x80\x86\xe7\x81\xab'

16 string = b.decode() # 第一引數預設utf8,第二引數預設strict

17 print(string)

18 19 # bytes轉字串方式三

20 b = b'\xe9\x80\x86\xe7\x81haha\xab'

21 string = b.decode('utf-8', 'ignore') # 忽略非法字元,用strict會丟擲異常

22 print(string)

23 24 # bytes轉字串方式四

25 b = b'\xe9\x80\x86\xe7\x81haha\xab'

26 string = b.decode('utf-8', 'replace') # 用?取代非法字元

27 print(string)

28 29 # 字串轉bytes方式一

30 str1 = '逆火'

31 b = bytes(str1, encoding='utf-8')

32 print(b)

33 34 # 字串轉bytes方式二

35 b = str1.encode('utf-8')

36 print(b)

執行結果

逆火逆火

逆haha

逆�haha�

b'\xe9\x80\x86\xe7\x81\xab'

b'\xe9\x80\x86\xe7\x81\xab' 

python中decode和encode的使用

python中的編碼是採用unicode編碼的,在做編譯轉換時,需要使用unicode作為中間編碼 情況一 編碼一 unicode編碼 將其他編碼的字串解碼 decode成unicode a.decode gb2312 或者 unicode.unicode a,gb2312 情況二 unicode編...

python中decode和encode的區別

coding utf 8 import sys 首先要搞清楚,字串在python內部的表示是unicode編碼,因此,在做編碼轉換時,通常需要以unicode作為中間編碼,即先將其他編碼的字串解碼 decode 成unicode,再從unicode編碼 encode 成另一種編碼。decode的作用...

python中decode和encode的區別

import sys 字串在python內部的表示是unicode編碼,因此,在做編碼轉換時,通常需要以unicode作為中間編碼,即先將其他編碼的字串解碼 decode 成unicode,再從unicode編碼 encode 成另一種編碼。decode的作用是將其他編碼的字串轉換成unicode編...