Python 生成随机数
2017-07-20 tech python 1 mins 221 字
# 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。