https://github.com/wangzhe3224/python-recipes-300-second
python 速食 300秒
https://github.com/wangzhe3224/python-recipes-300-second
Last synced: 18 days ago
JSON representation
python 速食 300秒
- Host: GitHub
- URL: https://github.com/wangzhe3224/python-recipes-300-second
- Owner: wangzhe3224
- Created: 2023-02-03T15:14:14.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-05T22:10:08.000Z (over 2 years ago)
- Last Synced: 2025-01-15T13:28:54.527Z (9 months ago)
- Language: Jupyter Notebook
- Size: 853 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# Python 速食 300 秒
实用 Python 使用小视频,每个不超过 5 分钟,展示 Python 的使用技巧。
**适合 Python 初学,想要进阶的朋友。**
包含但不限于:
- 基本数据结构和算法
- 字符串和文本
- 文件和IO
- 面向对象
- 元编程
- 网络编程
- 并发编程
- 函数编程
- numpy
- pandas
- matplotlib这个系列虽然是速食,但是我为大家提供了比较清晰的归类,方便大家有计划的学习和强化。
Cover: https://docs.google.com/presentation/d/1OFyHyXF5t2qq12mNskPv4SGJMZBaRAOyHiUl7XMq3HA/edit?usp=sharing
## 目录
- 数据结构和算法
- [解包](content/1-数据结构和算法/1-1-解包.ipynb)
- [堆和最大小N个元素](content/1-数据结构和算法/1-2-%E6%9C%80%E5%A4%A7%E6%9C%80%E5%B0%8FN%E4%B8%AA%E5%85%83%E7%B4%A0.ipynb)
- [切片 - Slice](content/1-数据结构和算法/1-3-切片.ipynb)
- 字符串和文本
- [多重分割字符串](content/2-字符串和文本/2-1-split-string-multi-deli.ipynb)
- 数字、时间、日期
- [精确小数计算](content/3-数字-日期-时间/3-1-accurate-decimal.ipynb)
- 面向对象编程
- [带约束的类属性](content/oo/type_checked_attri.py)
- [接口的实现](content/oo/interface.py)
- [TypedDict](content/oo/typed_dict.py)## 视频讲解
- [知乎 - 泛程序员](https://www.zhihu.com/zvideo/1604974643713900544)
- [B站 - 泛程序员](https://www.bilibili.com/video/BV1wY411q7dn/?vd_source=da65fd0f11a3d90e543b48cf26e65fb7)
- [小红书 - 泛程序员](https://www.xiaohongshu.com/user/profile/5d093f22000000001201fe8a)
- [油管 - 泛程序员](https://www.youtube.com/watch?v=Jn92wKNF5kc&list=PL5ETbHWvsj-HMT5pFw6p6t_tPLI17l0y3)## 参考
- 《Python Cookbook》
- 更多参考