当前位置: 编程技术>python
Python random模块(获取随机数)常用方法和使用例子
来源: 互联网 发布时间:2014-10-04
本文导语: random.randomrandom.random()用于生成一个0到1的随机符点数: 0 b,则生成的随机数n: a import random>>> random.randrange(0, 101, 2)# 42 随机浮点数: 代码如下:>>> import random>>> random.random()0.85415370477785668>>> random.uniform(1, 10)# 5.4221167969800881 随机字...
random.random
random.random()用于生成一个0到1的随机符点数: 0 b,则生成的随机数n: a import random
>>> random.randrange(0, 101, 2)
# 42
随机浮点数:
代码如下:
>>> import random
>>> random.random()
0.85415370477785668
>>> random.uniform(1, 10)
# 5.4221167969800881
>>> random.random()
0.85415370477785668
>>> random.uniform(1, 10)
# 5.4221167969800881
随机字符:
代码如下:
>>> import random
>>> random.choice('abcdefg%^*f')
# 'd'
>>> random.choice('abcdefg%^*f')
# 'd'
多个字符中选取特定数量的字符:
代码如下:
>>> import random
random.sample('abcdefghij', 3)
# ['a', 'd', 'b']
random.sample('abcdefghij', 3)
# ['a', 'd', 'b']
多个字符中选取特定数量的字符组成新字符串:
代码如下:
>>> import random
>>> import string
>>> string.join( random.sample(['a','b','c','d','e','f','g','h','i','j'], 3) ).replace(" ","")
# 'fih'
>>> import string
>>> string.join( random.sample(['a','b','c','d','e','f','g','h','i','j'], 3) ).replace(" ","")
# 'fih'
随机选取字符串:
代码如下:
>>> import random
>>> random.choice ( ['apple', 'pear', 'peach', 'orange', 'lemon'] )
# 'lemon'
>>> random.choice ( ['apple', 'pear', 'peach', 'orange', 'lemon'] )
# 'lemon'
洗牌:
代码如下:
>>> import random
>>> items = [1, 2, 3, 4, 5, 6]
>>> random.shuffle(items)
>>> items
# [3, 2, 5, 6, 4, 1]
>>> items = [1, 2, 3, 4, 5, 6]
>>> random.shuffle(items)
>>> items
# [3, 2, 5, 6, 4, 1]