











Coding Question 19
Access Denied!
To view this page you have to login first
Login here -
Trivia
Did you know 1 million people use PrepInsta everyday?
To view this page you have to login first
Login here -
Did you know 1 million people use PrepInsta everyday?
#python
from itertools import permutations
def hi(str):
permlist=permutations(str)
for perm in list(permlist):
print(”.join(perm))
if __name__ == “__main__”:
str=input()
hi(str)
give solution in python