I am trying to create a Python program where it accepts a string and displays permutations based on that.
For example.
If the user enters "[AAA] Grim" it should generate words starting from "aaa Grim" then "aab Grim" then "aac Grim" to "zzz Grim" etc. Or if the user enter "[AA] Grim" it should generate "aa Grim", "ab Grim", "ac Grim" to "zz Grim"
Sorry for the unclear question title. I'm not sure on how to word what I require without an example. :)