Home  >  Article  >  Backend Development  >  Python中的random()方法的使用介绍

Python中的random()方法的使用介绍

WBOY
WBOYOriginal
2016-06-10 15:12:301360browse

 random()方法返回一个随机浮点数r,使得0是小于或等于r 以及r小于1。
语法

以下是random()方法的语法:

random ( )

注意:此函数是无法直接访问的,所以我们需要导入random模块,然后我们需要使用random对象来调用这个函数。
参数

    NA

返回值

此方法返回一个随机浮点数r,使得0是小于或等于r以及r小于1。
例子

下面的例子显示了random()方法的使用。

#!/usr/bin/python
import random

# First random number
print "random() : ", random.random()

# Second random number
print "random() : ", random.random()

当我们运行上面的程序,它会产生以下结果:

random() : 0.281954791393
random() : 0.309090465205

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn