Skip to content

Instantly share code, notes, and snippets.

@IndhumathyChelliah
Created July 23, 2020 00:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IndhumathyChelliah/d7d9ebadf78dd8d8c85331beb2e76e6c to your computer and use it in GitHub Desktop.
Save IndhumathyChelliah/d7d9ebadf78dd8d8c85331beb2e76e6c to your computer and use it in GitHub Desktop.
#Tuple
a=(1,2,3,4,5)
#Converting tuple(iterable) into iterator object using iter() function.
b=iter(a)
print (b)#Output:<tuple_iterator object at 0x015DE610>
print (type(b))#Output:<class 'tuple_iterator'>
#Applying next() over the iterator.
#Returns one element at a time.
print (next(b))#Output:1
print (next(b))#Output:2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment