python中随机数函数是random,其实好多语言中取随机数的函数都是random 只是调用的方法不一样
r = random.random()
print(r)
输出:
0.926678564647434
随机数的默认是float(浮点型)
n = int(random.random()*10)
print('n的值为:',n)
输出:
n的值为: 2
int(整数类型)
乘以10的原因是为了取整,去过不乘以10,那么一直就是一个小于1大于0的数,取整永远是0,起不到随机数的作用
# 我们先给一个种子值
random.seed(2)
print(random.random())
输出:
0.9560342718892494
这个时候种子值2,就作为了随机数0.9560342718892494的一个标记
当我们再次随机数的时候就上2这个种子值
print(random.random()) #作对比的
random.seed(2)
print(random.random())
输出:
0.4848326734132643
0.9560342718892494
如果省略,就意味着当前系统时间作为参数
random.seed()
print(random.random())
random.seed()
print(random.random())
random.seed()也可以运用到其他的函数上面,比如:循环
random.seed(5)
num=0
while(num<5):
print(random.random()) #生出5个随机数
num+=1
这样的话产生的序列是不变的
print(random.randint(1,100))
print(random.uniform(0.2,1.1 + 2.2j))
输出:
(0.7561335664667732+1.3594376069187786j)
print(random.randrange(1,7,3))
输出的结果要么是1要么是4(1+3)
不会是7(1+3+3),因为不包括最后的stop
num=[1,2,3,4,5,6,7]
print (num)
random.shuffle(num)
print (num)
item=['a','b','c','d','e','f','g']
print (item)
random.shuffle(item)
print (item)
输出:
[1, 2, 3, 4, 5, 6, 7]
[2, 5, 3, 6, 4, 1, 7]
['a', 'b', 'c', 'd', 'e', 'f', 'g']
['g', 'c', 'd', 'f', 'a', 'b', 'e']
random.sample()随机取n个字符.必须有两个参数
print(random.sample('hello world',5))
输出['r', ' ', 'd', 'o', 'w']
random.choice()随机选取一个字符
print(random.choice('hello world'))
输出r