Python 生成随机数

# coding:utf-8
import time
import random

time.sleep(random.randint(4,9))

这里我用了 random 模块的 randint() 函数来生成随机数,每次执行后都返回不同的数字(4到 9)。

函数的语法为:

random.randint(a,b)

函数返回数字 N ,N 为 a 到 b 之间的数字(a <= N <= b),包含 a 和 b。

参考资料


天地不仁,以万物为刍狗 - 道经 jekyll引擎跳过一些代码的解析