random.randint(2, 12) returns same results every time it's run in Python

前端 未结 4 778
小鲜肉
小鲜肉 2020-12-12 01:00

I have a script that generates 10 random numbers between 2 and 12:

repetition = 10
while repetition > 0:
    print(random.randint(2,12))
    repetition =          


        
4条回答
  •  粉色の甜心
    2020-12-12 01:24

    The first thing that you should understand is that computer generated random numbers are not really random. To generate a pseudo-random number, the computer uses a function that generates a number based on a previous value (more details in https://en.wikipedia.org/wiki/Random_number_generation). The sequence of pseudo-random numbers depends on the first value passed to this function, known as seed.

    By default in the Random class' constructor (__init__), used by Python's random module, the seed is defined by the operating system. This is usually based on the current system time. If you defined your own seed using the function random.seed your results will be deterministic. You will always get the same values in this case.

提交回复
热议问题