python中random is not defined_python random模块的详细讲解

1.random()方法

random.random()方法返回的是[0,1)之间的浮点数>>> import random>> c = random.random()

>> print c

0.3110676697832. randrange()方法

语法格式为

random.randrange ([start,] stop [,step])

参数

start -- 指定范围内的开始值,包含在范围内。

stop -- 指定范围内的结束值,不包含在范围内。

step -- 指定递增基数。(也就是说最后print variable的值减除范围开始的值能被步长整除)

v = random.randrange(100, 1000, 3)>> print va

Traceback (most recent call last):

File "", line 1, in

NameError: name 'va' is not defined

>> print v

802

3.random.choice(" ")

print random.choice(["hello", "world"])

print random.choice(("Tuple", "List", "Dict"))

the result is hello or world

the result is Tuple , List or Dict.

4.random.uniform()

random.uniform(a, b),用于生成一个指定范

你可能感兴趣的:(python中random,is,not,defined)