Using Iterators with Sequences : Iter : Buildin Function PYTHON TUTORIALS


PYTHON TUTORIALS » Buildin Function » Iter »

 

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 Buildin Function
» Iter