轮盘模拟器使用哪种数字?
(用于永久序列)
来自软件伪随机数生成器(Pseudo Random Number Generator,P-RNG)的数字。
对这些数字有疑问的用户可以随时 使用自己的数字。
来自 python 文档:
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.
一百万个数字
这里有一个连续的 一百万个数字的永久序列。
对于有抱负的轮盘爱好者,这里有一个小型 Python 脚本,可以输出 RNG 数字:
#!/usr/bin/env python
\# coding: utf8
from random import randint
def prng():
for i in xrange(0,1000): print randint(0,36)
prng()
这些行必须连同缩进一起复制到文本文件中。
后续操作取决于操作系统。
祝你好运!