摘要: >>> import random #随机小数 >>> random.random() # 大于0且小于1之间的小数 0.7664338663654585 >>> random.uniform(1,3) #大于1小于3的小数 1.6270147180533838 #恒富:发红包 #随机整数 >>> random.randint(1,5) # 大于等于1且小于等于5之间的整数 >>>... 阅读全文
posted @ 2019-01-10 11:50 mqx168 阅读(158) 评论(0) 推荐(0) 编辑