Python 14
- 为什么函数可以直接修改列表,但不能修改字符串。
- EAFP:先斩后奏的设计思路,异常处理的用武之地,pythonic 的编程哲学
- 【Python】Slice:被低估的小技巧,减少重复工作量
- Match Case: 让 80% 的 if 惨遭失业
- 【设计模式 in Python】策略模式:不要再用一个类装下所有方法了!
- 【Python】从迭代器到生成器:小内存也能处理大数据
- Python Common Mistakes: Why shouldn't we use a list as the default parameter of a function
- Python Features: Special Methods - Make custom classes behave like build-in classes
- Python Features: Asterisk - small shape, versatile functionality.
- Python Features: Lambda function - Simple one-time function
- Python Features: Decorators - Alter functions functionality without changing source code
- 【Python 高级特性】生成器:处理大量数据时,节省内存和时间
- 【Python 高级特性】推导式:一行更比三行强,用更少的代码写出更高的效率
- 【Python 进阶】面向对象编程,一定要知道的类变量、类方法、静态方法