Home>Article>Backend Development> Example tutorial of Python random() function
The following editor will bring you an article about python's random function. I think it is quite good. I will share it with you now and give it as a reference. Let’s follow the editor and take a look.
Description
random() method returns a randomly generated real number, which is in the range [0,1).
Syntax
The following is the syntax of the random() method:
import randomrandom.random()
Note: random() cannot be accessed directly. You need to import the random module and then pass randomstaticObjectCall this method.
Return value
Returns a randomly generated real number, which is in the range of [0,1).
Example
The following shows an example of using the random() method:
#!/usr/bin/pythonimport random # 生成第一个随机数print "random() : ", random.random()# 生成第二个随机数print "random() : ", random.random()
The output result after running the above example is:
random() : 0.281954791393 random() : 0.309090465205
[Related recommendations]
2.Share the random module generation in Python Example tutorial of random numbers
3.Share an example tutorial of random (randomly generated numbers) in Python
5.Common methods and usage examples of Python random module (obtaining random numbers)
6.Common methods of Python random module
7.Python module learning: random random number generation
The above is the detailed content of Example tutorial of Python random() function. For more information, please follow other related articles on the PHP Chinese website!