10

I am trying to iterate through a loop in python but the nested loop is not reaching the incremental element.

Is there any way other than using range like "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)

1 Answer 1

23

Just iterate as you naturally would over cursor objects, I don't see you would want to iterate over it using range and .next().

cursor1= Collection.find({x : {"$gt" : 1}})
for record in cursor1:
    # do stuff with your record
Sign up to request clarification or add additional context in comments.

2 Comments

Ok if the collection has non integer values?? how can I use them in the array??
@user1511208 the for .. in .. loop will iterate over all records returned by cursor1. You don't need to know the keys in advance (you seem to be assuming this with your attempt to use range in the original question).

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.