You are viewing a single comment's thread. Return to all comments →
from itertools import permutations
word, n = input().split()
for i in sorted(permutations(word,int(n))): 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 →
from itertools import permutations
word, n = input().split()
for i in sorted(permutations(word,int(n))): print(''.join(i))