We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
itertools.combinations()
itertools.combinations()
Sort by
recency
|
906 Discussions
|
Please Login in order to post a comment
Hi, bro.
When you use split(), it returns a list, so you don't need to use list().
been practicing again with python. not the simplest one, big hope to be more advance.
from itertools import combinations s,k=input().split() k1=int(k) s1=list(s) s1.sort() for i in range(0,k1): p=list(combinations(s1,i+1)) for i in p: j="".join(i) print(j)