Created
October 27, 2020 11:30
-
-
Save Kush1101/2bd7ec5e27b2ee77ea862690c7748480 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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