Skip to content

Instantly share code, notes, and snippets.

@Kush1101
Created October 27, 2020 11:30
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 Kush1101/2bd7ec5e27b2ee77ea862690c7748480 to your computer and use it in GitHub Desktop.
Save Kush1101/2bd7ec5e27b2ee77ea862690c7748480 to your computer and use it in GitHub Desktop.
from itertools import islice
l = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
for i in islice(l, 1, 9, 1):
print(i, end =' ')
# OUTPUT
"""
2 3 4 5 6 7 8 9
"""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment