program for finding permutations of a number! Any changes can be made | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

program for finding permutations of a number! Any changes can be made

https://code.sololearn.com/cZt5M69NgGGA/?ref=app

25th Mar 2020, 7:32 AM
Gireesh Desineni
Gireesh Desineni - avatar
3 Answers
+ 4
You need to try first. We are here to provide solutions not code.
25th Mar 2020, 7:35 AM
A͢J
A͢J - avatar
+ 2
Gireesh Desineni from itertools import permutations string = "abcd" print(list(permutations(string))) This will print all the possible permutations.
25th Mar 2020, 10:54 AM
maf
maf - avatar
+ 1
I tried
25th Mar 2020, 10:00 AM
Gireesh Desineni
Gireesh Desineni - avatar