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

WBOY
Release: 2016-06-10 15:12:30
Original
1356 people have browsed it

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

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

random ( )

Copy after login

注意:此函数是无法直接访问的,所以我们需要导入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()

Copy after login

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

random() : 0.281954791393
random() : 0.309090465205

Copy after login

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!