python中randon随机数
一。randrange函数: 返回指定递增基数集合中的一个随机数,基数默认值为1 import random random.randrange([start,]stop[,step]) start:指定范围内的开始值,包含在范围内 stop:指定范围内的结束值,不包含在范围内 step:指定递增基数 二。choice函数: 返回一个列表、元组、字符串的随即项 import random print("choice([1,2,3,4,5]):",random.choice([1,2,3,4,5])) 运行结果为 choice([1,2,3,4,5]):3 来源: CSDN 作者: cuicui_ruirui 链接: https://blog.csdn.net/cuicui_ruirui/article/details/104527710