python字串怎麼解碼?

wangsys發表於2021-09-11

python字串怎麼解碼?

python字串解碼的方法:

python中可以使用decode()方法對字串進行解碼。

python中可以使用encode()方法將字串轉換為bytes型別,此過程稱為“編碼”。

decode() 方法用於將 bytes 型別的二進位制資料轉換為 str 型別,這個過程也稱為“解碼”。

decode() 方法的語法格式如下:

bytes.decode([encoding="utf-8"][,errors="strict"])

示例:

#!/usr/bin/python
 
str = "this is string example....wow!!!";
str = str.encode('base64','strict');
 
print "Encoded String: " + str;
print "Decoded String: " + str.decode('base64','strict')

輸出結果如下:

Encoded String: dGhpcyBpcyBzdHJpbmcgZXhhbXBsZS4uLi53b3chISE=

Decoded String: this is string example....wow!!!

更多Python知識請關注。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/3244/viewspace-2833622/,如需轉載,請註明出處,否則將追究法律責任。

相關文章