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.
Pythonで「リトルエンディアン」の方法でhexstring='40040000'を読み取る正しい方法は何ですか。私が期待している結果は440時間です。
struct結果をどの形式にするかわからない。一緒に使用して、結果をbinasciiintに変換できます。
struct
binascii
>>> struct.unpack('<L', binascii.unhexlify('40040000')) (1088,)
これは440hと同じです:
>>> hex(struct.unpack('<L', binascii.unhexlify('40040000'))[0]) '0x440'