#Library

2024-11-04

random

[[Python]] 使用  [[Mersenne Twister]] 算法作为核心生成器。

2024-10-15

inspect

## .getmembers()

2024-03-30

hashlib

hashlib 模块为 [[Python]] 提供了一些常用的加密哈希算法的实现,比如 MD5、SHA-1、SHA-256 等。

2023-12-19

functools

[[Python]] 高阶函数,完整说明参考:[functools](https://docs.python.org/zh-cn/3/library/functools.html)。

2023-12-15

itertools

- import:: import itertools - doc:: [itertools](https://docs.python.org/zh-cn/3/library/itertools.html)

2023-10-31

json

JSON 编码和解码器

2023-09-26

base64

- import:: import base64 - doc:: [base64](https://docs.python.org/zh-cn/3/library/base64.html)

2023-09-24

functions

内置函数

2023-09-15

os

- import:: import os - doc:: [library/os](https://docs.python.org/zh-cn/3/library/os.html) - desc:: 操作系统相关功能

2023-08-03

hexdigest

加密

2023-04-04

calendar

- import:: import calendar - doc:: [calendar](https://docs.python.org/zh-cn/3/library/calendar.html) - desc:: 日历相关...

2023-02-11

copy

copy 后,不会改变原始对象

2023-02-07

uuid

UUID 生成

2023-01-01

logging

日志

2022-12-25

内置函数

[[Python]] [内置函数](https://docs.python.org/zh-cn/3/library/functions.html)。

2022-12-21

datetime

支持时间运算、格式化和解析

2022-12-15

collections

- import:: import collections - doc:: [collections](https://docs.python.org/zh-cn/3/library/collections.html)

2022-12-15

enum

枚举类型

2022-12-11

re

正则表达式是用一种形式化的语言来描述字符串的匹配模式。

2022-12-11

textwrap

文本自动换行与填充。

2022-11-29

multiprocessing

- import:: import multiprocessing - doc:: [multiprocessing](https://docs.python.org/zh-cn/3/library/multiprocessing.htm...

2022-11-29

queue

- import:: `import queue` - doc:: [queue](https://docs.python.org/zh-cn/3/library/queue.html)

2022-11-26

concurrent

## futures

2022-11-26

string

[[Python]] 常见的字符串操作,不过里面的许多函数已经移植到 [[str]].

2022-09-23

sorted

```python nums = [5, 2, 3, 1, 4]

2022-09-22

try...except

异常捕获

2022-08-16

difflib

文本差异比较工具

2022-05-26

ElementTree

用于解析和创建 XML 数据

2022-04-28

csv

csv 是 Python 标准库的实现,实现了 CSV 文件的读写。

2022-04-25

pickle

对象序列化

2022-04-24

dict

`dict1.pop('name')` 删除指定键

2022-04-24

pprint

数据美化输出

2022-04-17

pathlib

- doc:: [library/pathlib](https://docs.python.org/zh-cn/3/library/pathlib.html) - desc:: 系统路径处理

2022-04-16

argparse

- import:: import argparse - doc:: [argparse](https://docs.python.org/zh-cn/3/library/argparse.html)

2022-03-29

math

### 数字

2022-03-29

str

字符串

2022-03-29

time

[[Python]] 的 time 模块由底层 C 库提供与时间相关的函数。

2022-03-27

args

import::