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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- python怎麼拼接字串Python字串
- python怎麼查詢字串中是否包含某個字串Python字串
- python怎麼檢測字串是否有字母?Python字串
- Python中怎麼轉換字串大小寫Python字串
- python建立檔名亂碼怎麼解決Python
- 你真的知道Python的字串怎麼用嗎?Python字串
- Python語言怎麼把列表轉為字串?Python字串
- 怎麼停止python指令碼Python指令碼
- python檔案中寫中文亂碼怎麼解決Python
- python3中怎麼比較字串是否相等Python字串
- python讀取文字內容中文亂碼怎麼解決Python
- python程式碼怎麼封裝Python封裝
- 當Python面試 碰到 反轉字串,你會怎麼做?Python面試字串
- postgresql怎麼擷取字串SQL字串
- python urllib2中文亂碼怎麼解決Python
- python tarfile解壓失敗怎麼解決Python
- python指令碼開頭怎麼寫Python指令碼
- Python字串講解舉例—工資字串!Python字串
- centos vim亂碼怎麼解決?CentOS
- vscode中文亂碼怎麼解決 vscode輸出亂碼怎麼解決VSCode
- python中字串的編碼和解碼Python字串
- pycharm控制檯亂碼怎麼解決?PyCharm
- android php 亂碼怎麼解決AndroidPHP
- html程式碼複用怎麼解決?HTML
- 怎麼給字串欄位加索引?字串索引
- python怎麼隱藏一段程式碼Python
- python用install失敗怎麼解決Python
- python中無法引入pil怎麼解決Python
- python安裝scrapy出錯怎麼解決Python
- python2.7安裝不了怎麼解決Python
- python版本不相容怎麼解決Python
- 面試python崗位,提問:連線字串用join還是+,怎麼回答?面試Python字串
- cad字型亂碼怎麼解決 cad裡面文字顯示???怎麼解決
- LeetCode 394 字串解碼LeetCode字串
- 什麼是字串?Python中字串必須加引號嗎?字串Python
- python寫程式碼怎麼跳到下一行Python
- 怎麼用python寫簡單的遊戲指令碼?Python遊戲指令碼
- python爬取中文輸出亂碼怎麼辦Python