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