Huf C Dtxh J Onuwor K Opltvaqbge Eeirzmoys.

1 >>> "".join(sorted(set("The quick brown fox jumps over the lazy dog".lower())))
2 ' abcdefghijklmnopqrstuvwxyz'
3 >>> import re
4 >>> import random
5 >>> a = list("The quick brown fox jumps over the lazy dog".lower())
6 >>> random.shuffle(a)
7 >>> re.sub(r" +", " ", "".join(a)).title()
8 'Huf C Dtxh J Onuwor K Opltvaqbge Eeirzmoys'