文章目录 1. '\x'与'0x' 2. little endian 与 big endian 1. ‘\x’与’0x’ '\x'与'0x' 的意义是不同的: >>> int('\x41',16) 10 >>> int('0x41',16) 65 >>>