I have done some small tests about the random module of python.
here is the code and some analysis
bucket=[0 for i in range(10)]
for i in range(10000):
seed=np.random.rand(1)[0]
bucket[int(seed*10)]+=1
for i in bucket:
print(i," ")
the answer is below
1018
1005
982
1023
982
997
999
996
995
1003
from the results we can conclude that we can get that the distribution is even