Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ソケットバイト配列から受け取ります。2 番目と 3 番目のバイトのみを整数に変換する方法 (2 番目は 3 番目よりも重要度が低い) ?
たぶん私はあなたが求めていることを逃したかもしれませんが、あなたはこのような意味ですか?
b = bytearray("123456789") b[1] # 50 b[2] # 51 int(chr(b[1])) # 2 int(chr(b[2])) # 3