random 随机数
random 是 python 的自带模块,用以产生随机数或者获取随机结果。
在线运行演示代码
参考教程
from random import randint a = randint(5, 10) b = randint(1, 100) print(a) print(b)