python
obite
这个作者很懒,什么都没留下…
展开
-
Python Speed Performance Tips
This page is devoted to various tips and tricks that help improve the performance of your Python programs. Wherever the information comes from someone else, I've tried to identify the source. Pytho...原创 2018-07-13 14:21:20 · 524 阅读 · 0 评论 -
[译]Python Performance
性能技巧目录目录 1其他版本 2概述:优化需要优化的 2选择正确的数据结构 2排序 2字符串连接 4循环 4避免“点”... 5局部变量 5初始化字典元素 6import语句的消耗 7数据聚合 8少做 9Python不是C 9使用xrange来代替range 11执行时绑定函数 12性能分析代码 12性能分析 13cProfile和Hotshot模块 13Trace模块 13可视化性能评估结果 1...原创 2018-07-13 15:30:28 · 458 阅读 · 0 评论