0
使用Python3.4的Im,但是這個項目是從Python2導入的,下面的函數顯示標題中提到的錯誤。TypeError:不能將字節連接到str
def int_to_bytes(i,len):
res = b""
for j in range(len):
res += chr(i%256)
i = i>>8
return res
我應該做一個chr()函數結果的字節值?
是它的工作,謝謝。但在糾正這個問題後,我想我會切換到python2。 – 2015-04-04 20:31:22