You are viewing a single comment's thread. Return to all comments →
from itertools import permutations inp = input().split() possibilities= list(permutations(inp[0], int(inp[1]))) possibilities.sort() for i in possibilities: print(''.join(i))
Seems like cookies are disabled on this browser, please enable them to open this website
itertools.permutations()
You are viewing a single comment's thread. Return to all comments →