
Python学习笔记
PyTi
定好了目标于是我上路了无暇顾及周围的美景和压力
展开
-
Python 程序的性能分析
Python 程序的性能分析 原文链接: Huy Nguyen 翻译: 伯乐在线 - 贱圣OMG转载 2013-09-12 09:21:17 · 609 阅读 · 0 评论 -
Python 类型比较: type 和 isinstance
OLD ( 不推荐的方式) if type(obj) == type(0) … if type(obj) == types.IntType… Better: if type(obj) is type(0) … Even Better: if isinstance(obj, int)… if isinstance(obj, (int, long))… if type(obj) is int… 注意:尽原创 2016-12-15 15:23:52 · 2868 阅读 · 0 评论