+ 1
program for finding permutations of a number! Any changes can be made
3 Réponses
+ 4
You need to try first. We are here to provide solutions not code.
+ 2
Gireesh Desineni
from itertools import permutations
string = "abcd"
print(list(permutations(string)))
This will print all the possible permutations.
+ 1
I tried