7

我正在尝试遍历 python 中的循环,但嵌套循环没有到达增量元素。

除了使用range“hasNext()”之外还有什么方法吗?

cursor1 = Collection.find({x : {"$gt" : 1}})
array1 = []
array2 = []
print Collection.count()

for r in range(0, cursor1.count()):
    first = cursor1.next().get("entity")
    array2.append()

    for z in range(len(array2)):
        print len(original_tweets)
        if originalEntity.get("id") != duplicated_entity("id"):
            array2.append(second)
4

1 回答 1

17

就像你自然会遍历光标对象一样迭代,我看不出你会想要使用rangeand迭代它.next()

cursor1= Collection.find({x : {"$gt" : 1}})
for record in cursor1:
    # do stuff with your record
于 2012-07-09T07:12:04.877 回答