python-随机数的产生random模块

random模块用来产生随机数:

查看random模块的方法:

import random

random.__dir__Out[39]:<function __dir__>random.__dir__()  #此方法可以查看某个模块的方法

产生随机数:

产生0~1之间的随机数:

random.random()   #此方法只会产生0~1之间的随机数Out[42]: 0.14584365038166225random.random()
Out[43]: 0.5366296300103158random.random()
Out[44]: 0.936239179720834random.random()
Out[45]: 0.09407523351903868random.random()
Out[46]: 0.4499090927149705

产生随机整数:

random.randint(1,3)#包含数字3Out[50]: 1random.randint(1,3)
Out[51]: 1random.randint(1,3)
Out[52]: 2random.randint(1,3)
Out[53]: 3############random.randrange(1,3) #不包含数字3Out[56]: 2random.randrange(1,3)

产生随机浮点数:

random.uniform(3,4)  #产生整形之间的浮点数Out[61]: 3.7472254465353703random.uniform(3.545,9.656)  #给出浮点数,产生这之间的浮点数Out[62]: 8.45786901292924random.uniform(13.545,9.656)  # 位置的大小可以互换Out[63]: 11.45893194445811

从序列中随机选一个元素:

序列可以为:列表,元组,字符串。

random.choice(list("abcdef"))  #列表Out[66]: 'd'random.choice(list("abcdef"))
Out[67]: 'f'random.choice(tuple("abcdef"))  #元组Out[68]: 'd'random.choice(tuple("abcdef"))
Out[69]: 'b'random.choice("abcdef")  #字符串Out[70]: 'f'random.choice("abcdef")
Out[71]: 'a'

从序列中随机挑选k个元素,返回一个列表,并不改变原序列的值。

d = list()  376]: [, , = tuple(380]: [, , ]

打乱原序列中值得顺序:没有返回结果,直接更改原序列!

lq
Out[95]: ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j']

random.shuffle(lq)

lq
Out[97]: ['i', 'g', 'd', 'c', 'a', 'b', 'f', 'h', 'e', 'j']

 

上一篇:CString常用函数


下一篇:编译orb-slam2(add seg)的一些警告/usr/bin/ld: warning: libopencv_core.so.3.4, needed by ../Thirdparty/DBoW2/