You are viewing a single comment's thread. Return to all comments →
from itertools import combinations if __name__ == '__main__': s, length = input().split() for i in range(1, int(length)+1): print('\n'.join([''.join(t) for t in combinations(sorted(s), i)]))
Seems like cookies are disabled on this browser, please enable them to open this website
itertools.combinations()
You are viewing a single comment's thread. Return to all comments →