标签: python random
以下代码使用了哪种算法?
import random random.randint(0,99)
线性同余发生器?或其他什么?
答案 0 :(得分:2)
根据the Python docs:
Python使用Mersenne Twister作为核心生成器。