Hello,
I am trying to generate random number but the following code returns always the same numbers after every restart:
for i in range(3):
print( randi()%8 )
#1
#1
#4
or
for i in range(3):
print(rand_range(0, 8))
#5.668026
#7.775277
#2.76658
I tried to restart application 10 times with the same result.
Is it possible to make totally random numbers in some range?
Thank you,