Skip to content

Instantly share code, notes, and snippets.

@leveled
Created July 6, 2022 16:46
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 leveled/0d3759eea5f761ee0f4ad4ac306f2542 to your computer and use it in GitHub Desktop.
Save leveled/0d3759eea5f761ee0f4ad4ac306f2542 to your computer and use it in GitHub Desktop.
Iterating through a list 2 characters at a time/extended slicing of lists in python
for (op, code) in zip(s[0::2], s[1::2]):
print op, code
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment