Skip to content

Instantly share code, notes, and snippets.

@aniruddha27
Created May 16, 2020 20:18
Show Gist options
  • Save aniruddha27/2ededc6afe454545da0e62c44254d44f to your computer and use it in GitHub Desktop.
Save aniruddha27/2ededc6afe454545da0e62c44254d44f to your computer and use it in GitHub Desktop.
sample = ['statistics', 'linear algebra', 'probability']
# iterator
it = iter(sample)
# next values
print(next(it))
print(next(it))
print(next(it))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment