Skip to content

Instantly share code, notes, and snippets.

@ZhouYang1993
Created May 28, 2020 16:20
Show Gist options
  • Save ZhouYang1993/eec375a8e923a182d4f39b52a3e17518 to your computer and use it in GitHub Desktop.
Save ZhouYang1993/eec375a8e923a182d4f39b52a3e17518 to your computer and use it in GitHub Desktop.
Iterators in Python
my_list = [1, 2, 3, 4, 5]
print(type(my_list))
# <class 'list'>
my_list_iterator = iter(my_list)
print(type(my_list_iterator))
# <class 'list_iterator'>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment