Python decode() 方法以 encoding 指定的編碼格式解碼字符串。默認編碼為字符串編碼。
response.decode('encoding=utf-8', errors='ignore')
response.decode('encoding=utf-8', errors='strict')
encoding -- 要使用的編碼,如"UTF-8"。
errors -- 設置不同錯誤的處理方案。
Python decode() 方法以 encoding 指定的編碼格式解碼字符串。默認編碼為字符串編碼。
response.decode('encoding=utf-8', errors='ignore')
response.decode('encoding=utf-8', errors='strict')
encoding -- 要使用的編碼,如"UTF-8"。
errors -- 設置不同錯誤的處理方案。
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。