python3 中pickle.load TypeError: a bytes-like object is required, not 'str'
bug原因:Python2 和 3 的字串相容問題,資料檔案是在Python2下是序列化的,所以使用Python3讀取時,需要將‘str’轉化為'bytes'。
Python2 中的寫法:
# 獲取漢字label對映表
def get_label_dict():
f=open('chinese_labels','r')
label_dict = pickle.load(f)
f.close()
return label_dict
Python3 中的寫法:
class StrToBytes: def __init__(self, fileobj): self.fileobj = fileobj def read(self, size): return self.fileobj.read(size).encode() def readline(self, size=-1): return self.fileobj.readline(size).encode() # 獲取漢字label對映表 def get_label_dict(): with open('chinese_labels', 'r') as f: label_dict = pickle.load(StrToBytes(f)) return label_dict
相關推薦
python3 中pickle.load TypeError: a bytes-like object is required, not 39;str39;
bug原因:Python2 和 3 的字串相容問題,資料檔案是在Python2下是序列化的,所以使用Python3讀取時,需要將‘str’轉化為'bytes'。 Python2 中的寫法: # 獲取漢字label對映表 def get_label_dict():
Python 3.5.2 TypeError: a bytes-like object is required, not 39;str’問題解決方案
con 指定 err byte 讀取 字節 code 解決方案 錯誤 運行環境Mac Python 3.5.2 Q: http_response = """\ HTTP/1.1 200 OK Hello, World! """ client_connection.se
TypeError: a bytes-like object is required, not 39;str39;
ef7 error ref date bytes wiki err obj target python bytes和str兩種類型轉換的函數encode(),decode() str通過encode()方法可以編碼為指定的bytes 反過來,如果我們從網絡或磁盤上讀取了
Socket send() method throws TypeError: a bytes-like object is required, not 39;str39;
error: ring net peer 函數 搜索 string類型 unicode 區分 python3 socket編程,發送data數據,會遇到需要bytes類型,而不是str字符串的錯誤 例如: import socket mysock = socket
Python異常:TypeError: a bytes-like object is required, not 39;str39;
Python異常:TypeError: a bytes-like object is required, not ‘str’ import json str = [{"userName" : "UserPython", "age" : 20}, (2, 3), 1] with o
【爬坑】Python 3.6 在 Socket 程式設計時出現型別錯誤 TypeError: a bytes-like object is required, not 39;str39;
1. 問題描述 Python 3.6 在 Socket 程式設計時出現錯誤如下 Traceback (most recent call last): File "F:/share/IdeaProjects/test/mypython/test/test10_tcpcli
Python異常:TypeError: a bytes-like object is required, not 'str'
Python異常:TypeError: a bytes-like object is required, not ‘str’ import json str = [{"userName" : "Use
【Python】TypeError: a bytes-like object is required, not 'str'
1、報錯 自己python3.+,使用別人python2.的程式碼報錯: rs = pow(int(binascii.hexlify(text), 16), int(pubKey, 16), int
python3 TypeError: a bytes-like object is required
python運行telnetlib的時候報錯:TypeError: a bytes-like object is required, not ‘str’,原因是因為python2和python3的版本的差異。在python2中可正常運行,而python3最重要的新特性也是對文本和二進制數據做了更清晰的區分。文
UDP通訊解決a bytes-like object is required, not 'str' 問題
簡介:最近在進行網路通訊的學習時候遇到了這個問題,使用的版本是Python3.5.2,啟動伺服器端,再啟動客戶端通訊時候遇到該問題,並且直接出錯無法繼續執行 服務端的程式是一個UDP通訊程式 import socket s=socket.socket(socket.AF
can't use a string pattern on a bytes-like object錯誤和must be str, not bytes錯誤
哎,新手使用Python真是痛苦,步步艱辛步步淚!寫了四行程式,出來兩個錯誤。下面記錄錯誤和解決方法 ======================================================================================
TypeError: cannot use a string pattern on a bytes-like object
dsm 模塊 odi nbsp mode IE python2 play ray 一勞永逸解決:TypeError: cannot use a string pattern on a bytes-like object TypeError: canno
一勞永逸解決:TypeError: cannot use a string pattern on a bytes-like object
TypeError: cannot use a string pattern on a bytes-like object 最近寫程式碼,python2和python3之間切換,難免會碰到一些問題,有些方法比如re模組的findall要求傳入的是字串格式的引數
statsmodels.tsa.arima_model預測時報錯TypeError: int() argument must be a string, a bytes-like object or a number, not 39;Timestamp39;
進行 時報 參數 csv 別人 間隔 get req ice 在 python 中用 statsmodels創建 ARIMA 模型進行預測時間序列: import pandas as pd import statsmodels.api as sm df = pd.read
python Bug記錄-int() argument must be a string, a bytes-like object or a number, not 39;dict39;
程式碼如下: error_msg = "" if request.method == "POST": new_dayincome = request.POST.get("dayincome_time", None) total_bath =
python爬蟲問題:TypeError: cannot use a string pattern on a bytes-like objec
Python3.x在學到爬蟲是需要注意不同於Python2.x需要將html進行解碼: import urllib import re def download(url,user_agent='XD',num_retries=2): print
Python3.6 AES加密 pycrypto? 更新為 pycrypto?demo | TypeError: Object type <class 39;str39;> cannot be passed to C code
初始 pac error: mod install rpc asc 如果 new #!/usr/bin/env python# -*- coding:utf-8 -*-# @author: rui.xu# @update: jt.huang# 這裏使用pycrypto?de
python3 TypeError: cannot concatenate 39;str39; and 39;int39; objects)程式碼錯誤
python3 TypeError: cannot concatenate 'str' and 'int' objects) 是不是很奇怪??? 我們進一步想想,print輸出的前面是字串組合,後面是列表(python),我們簡單點分開寫 : 使用 逗號
在SOLR環境變數的配置 過程中,遇到的 A pseudo attribute name is expected 異常
此類問題,不僅僅限於SOLR,還有很多基於XML配置程式,也會出現這種問題,原因十有八九就是 XML格式書寫錯誤 有問題的XML : <?xml version="1.0" encoding="UTF-8"> <Context docBase=
[ERROR ] Error parsing configuration file: /etc/salt/minion - conf should be a document, not <type 39;str39;>.
文件的 RR salt etc master str AS con nio 錯誤信息 [ERROR ] Error parsing configuration file: /etc/salt/minion - conf should be a document, not