avatar: Guide
youroul.com

0
150

数字从软件随机数发生器(RNG)。

你可以的 使用自己的号码如果你怀疑RNG!

python documentation:

Almost all module functions depend on the basic function random(), which generates a random float uniformly in the semi-open range [0.0, 1.0). Python uses the Mersenne Twister as the core generator. It produces 53-bit precision floats and has a period of 2**19937-1. The underlying implementation in C is both fast and threadsafe. The Mersenne Twister is one of the most extensively tested random number generators in existence. However, being completely deterministic, it is not suitable for all purposes, and is completely unsuitable for cryptographic purposes.

源 docs.python.org/2.6/library/random.html

Beitrag melden
什么样的数字将被使用呢?