I would like to generate a random series of letters assigned to a list and assign it to a new list. To further explain this question, I will give an example:
I have a list of 5 letters:
letters = ["A", "B", "C", "D", "E"]
And I want to randomly mixed those letters into another list and add it to a .TXT file. Heres an example of what I want the output to be:
["C", "A", "E", "D", "B"]
Or:
["E", "D", "B", "C", "A"]
As you can see, I just want all the letters to be randomly placed WITHOUT repeats. So something like this:
["C", "C", "E", "B", "A"]
Would not work as "C" repeats 2 times.
I would also like to do this in Python
Thanks Daniel