标签:step int rand bsp shuffle 有序 顺序 choice .sh
ramdom随机模块
用法:
random.random() 返回[0,1)的随机数
random.uniform(a, b) 返回[a, b]的随机数,a和b可以无序
random.randint(a, b) 返回[a, b]的整数,a和b必须有序a<=b
random.randrange([start=0], stop, [step]) 返回[start, stop)之间的整数,step表示步长
random.choice(str) 返回字符串某个字符或列表的某个元素
random.shuffle(list) 将list序列顺序打乱
random.sample(list, num) 返回获取list的num个随机元素组成的新列表
标签:step int rand bsp shuffle 有序 顺序 choice .sh
原文地址:https://www.cnblogs.com/Cony365/p/9466799.html