https://zhuanlan.zhihu.com/p/135221217
https://python3-cookbook.readthedocs.io/zh_CN/latest/c14/p14_make_your_program_run_faster.html
- 脚本语言放入函数
- 尽可能去掉属性访问 from math import sqrt 代替 math.sqrt()
- 少创建新的数据结构,避免不必要的抽象
- 局部变量代替全局变量
https://zhuanlan.zhihu.com/p/135221217
https://python3-cookbook.readthedocs.io/zh_CN/latest/c14/p14_make_your_program_run_faster.html
让时间为你证明