Python 检测成员函数、成员变量是否存在的方法by Liu Yue/2013-07-18 标签: Python 方法 成员 变量 函数 检测 是否 存在如下为测试用例: # 定义一个类>>> class A:... def __init__(self):... self.name = 'sunyi'... def fun1(self):... print "fun1"...# 创建对象a>&......了解更多
python 字典遍历方法性能对比by Liu Yue/2012-02-23 标签: Python 遍历 字典 对比 性能 方法最近项目中使用到了dict的遍历,笔者写了几年的python,大多数都是使用dict.keys()的遍历方式。无奈项目执行过程中当dict中的元素上千万的时候,两层for循环性能实在是扛不住,于是测试了一下几种遍历方法的性能import timeit DICT_SIZE = 5000 testDict = dict() for i in range(DICT_SIZE): testDict[i] = i&......了解更多