random模块
random.random() 在[0.0,1.0]区间随机返回一个浮点数
random.uniform(a,b) 在[a,b] (或[b,a])区间内随机返回一个浮点数
random.randint(a,b) 在[a,b]区间内随机返还一个整数