Skip to content

Instantly share code, notes, and snippets.

@IndhumathyChelliah
Created July 23, 2020 02:44
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/bdbf4f48051dedea6de4edb53ab4cbfd to your computer and use it in GitHub Desktop.
Save IndhumathyChelliah/bdbf4f48051dedea6de4edb53ab4cbfd to your computer and use it in GitHub Desktop.
l1=[1,2,3,4,5]
#Converting to iterator object
l2=iter(l1)
print (type(l2))#Output:<class 'list_iterator'>
print (max(l2))#Output:5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment