python|random模块函数测试
程序员文章站
2022-07-14 12:50:08
...
本博文基于python基础,旨在对random模块进行简单测试。包含从范围选出数、打乱数列、选出几个不同值的数。
实验效果
实验代码
from random import *
print('从1-10打印1个数....')
m = randrange(1, 10, 1)
print(m)
print('返回从0-1的实数.....')
print(random())
print('从指定序列中随机出一个数...')
lst = [1, 2, 99, 77, 23]
print(choice(lst))
print('(原/新)打乱序列lst...')
print("old:" , lst)
shuffle(lst)
print("new:" , lst)
print('从序列中选出2个不同值的元素.....')
print(sample(lst,2))