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