Using Iterators with Sequences : Iterator : Dictionary PYTHON TUTORIALS


PYTHON TUTORIALS » Dictionary » Iterator »

 

Using Iterators with Sequences


myTuple = (123'xyz', 45.67)
i = iter(myTuple)
print i.next()
print i.next()
print i.next()



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo Dictionary
» Iterator