Topic: New hand generator

I was having some issue getting a good hand with the new hand simulator so I decided to make my own in Python, through a bit of experimentation I figured out that I seemed to get better looking hands if I ran the random.shuffle function on the list 5+ times. Yes, I know truly random doesn't really need that, but we are not dealing with true random here but psudo-random, it is also very implementation dependent.