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.
我想弄清楚这个字符的含义是什么:<I在python中。
<I
正如我在许多使用套接字的 python 脚本中看到的,他们使用这个字符作为“pack”和“unpack”参数,所以对这个字符的解释会很好。
从struct模块文档...
struct
< little-endian I unsigned int integer 4
...so表示小端格式"<I"的 4 字节(32 位)无符号整数,它可以包含 0 到 4,294,967,295 之间的任何整数值。
"<I"