python中迭代器(iterator)用法实例分析
发布时间:2020-05-24 09:29:56 所属栏目:Python 来源:互联网
导读:本文实例讲述了python中迭代器(iterator)用法。分享给大家供大家参考。具体如下:
|
本文实例讲述了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!" )
break
input( 'nnPress Enter to exit...' )
希望本文所述对大家的Python程序设计有所帮助。 (编辑:安卓应用网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
