Python日常笔记

设置pip源

临时使用
pip install -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple some-package
全局使用
pip config set global.index-url https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple

struct格式化一览表

| 符号 | 类型 | 长度 | |----|------|----| | < | 小端在前 | - | | > | 大端在前 | - | | x | 没有价值 | - | | c | 字符 | 1 | | b | 整数 | 1 | | B | 整数 | 1 | | ? | 布尔值 | 1 | | h | 整数 | 2 | | H | 整数 | 2 | | i | 整数 | 4 | | I | 整数 | 4 | | l | 整数 | 4 | | L | 整数 | 4 | | q | 整数 | 8 | | Q | 整数 | 8 | | n | 整数 | - | | N | 整数 | - | | e | 浮点数 | 2 | | f | 浮点数 | 4 | | d | 浮点数 | 8 | | s | 字节 | - | | p | 字节 | - | | P | 整数 | - |


0 | 0 | 2024-11-07 08:33:26 | 2024-11-07 08:33:26