本文实例讲述了python中迭代器(iterator)用法。分享给大家供大家参考。具体如下:
#---------------------------------------# name: iterators.py# Author: Kevin Harris# Last ModifIEd: 03/11/04# Description: This Python script demonstrates how to use iterators.#---------------------------------------myTuple = (1,2,3,4)myIterator = iter( myTuple )print( next( myIterator ) )print( next( myIterator ) )print( next( myIterator ) )print( next( myIterator ) )# Becareful,one more call to next() # and this script will throw an exception!#print myIterator.next() print( " " )#---------------------------------------# If you have no IDea how many items # can be safely accesd via the iterator,# use a try/except block to keep your script from crashing.myTuple2 = ( "one","two","three","four" )myIterator2 = iter( myTuple2 )while 1: try: print( next( myIterator2 ) ) except stopiteration: print( "Exception caught! Iterator must be empty!" ) breakinput( '\n\nPress Enter to exit...' )
希望本文所述对大家的Python程序设计有所帮助。
总结以上是内存溢出为你收集整理的python中迭代器(iterator)用法实例分析全部内容,希望文章能够帮你解决python中迭代器(iterator)用法实例分析所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)