当前位置: 代码迷 >> 综合 >> python3 随机种子生成随机数
  详细解决方案

python3 随机种子生成随机数

热度:78   发布时间:2023-11-22 19:26:02.0
import random
random.seed(10)
print ("使用整数 10 种子生成随机数:", random.random())