Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
305 views
in Technique[技术] by (71.8m points)

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

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

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

When this code is executed 10 random numbers are generated, but each time I execute the code the same 10 random numbers are generated. This happens even if I run the code on a different computer!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...