#python
2023-07-14
update_kuma-api
- install:: `pip install uptime-kuma-api` - import:: `from uptime_kuma_api import UptimeKum...
2023-02-13
black
- install:: pip3 install black - use:: black file.py - github:: [psf/black](https://github....
2022-12-15
collections
- import:: import collections - doc:: [collections](https://docs.python.org/zh-cn/3/library...
2022-11-29
multiprocessing
- import:: import multiprocessing - doc:: [multiprocessing](https://docs.python.org/zh-cn/3...
2022-04-28
sqlalchemy
- install:: `pip install sqlalchemy` - import:: `import sqlalchemy` - github:: [sqlalchemy/...
2022-02-01
如何在字符串中插入变量
```python # 方式一 var = 'Hello {0}'.format('World') # 方式二 var = 'Hello {name}'.format(n...