Skip to content

Instantly share code, notes, and snippets.

@otamajakusi
Created October 9, 2021 06:36
Show Gist options
  • Save otamajakusi/593c2d9bde877229bb6ee97b53fbf8c7 to your computer and use it in GitHub Desktop.
Save otamajakusi/593c2d9bde877229bb6ee97b53fbf8c7 to your computer and use it in GitHub Desktop.
python itertools
text = "ABCDE"
l = len(text)
for s, e in itertools.combinations(range(l+1), 2):
print(text[s:e])
"""
A
AB
ABC
ABCD
ABCDE
B
BC
BCD
BCDE
C
CD
CDE
D
DE
E
"""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment