You are viewing a single comment's thread. Return to all comments →
from itertools import combinations S, k = input().split() S = sorted(S) k = int(k) for x in range(1, k + 1): for y in combinations(S, x): print(''.join(y))
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 →