# Python 生成随机数
> 原文: [https://thepythonguru.com/python-generating-random-numbers/](https://thepythonguru.com/python-generating-random-numbers/)
* * *
于 2020 年 1 月 7 日更新
* * *
Python `random`模块包含生成随机数的函数。 因此,首先需要使用以下行导入`random`模块。
```py
import random
```
## `random()`函数
* * *
`random()`函数返回随机数`r`,使得`0 <= r < 1.0`。
```py
>>> import random
>>> for i in range(0, 10):
... print(random.random())
...
```
**预期输出**:
```py
0.9240468209780505
0.14200320177446257
0.8647635207997064
0.23926674191769448
0.4436673317102027
0.09211695432442013
0.2512541244937194
0.7279402864974873
0.3864708801092763
0.08450122561765672
```
`randint(a, b)`生成`a`和`b`(含)之间的随机数。
```py
>>> import random
>>> for i in range(0, 10):
... print(random.randint(1, 10))
...
8
3
4
7
1
5
3
7
3
3
```
下一章将介绍 python 中的[文件处理技术](/python-file-handling/)。
* * *
* * *
- 初级 Python
- python 入门
- 安装 Python3
- 运行 python 程序
- 数据类型和变量
- Python 数字
- Python 字符串
- Python 列表
- Python 字典
- Python 元组
- 数据类型转换
- Python 控制语句
- Python 函数
- Python 循环
- Python 数学函数
- Python 生成随机数
- Python 文件处理
- Python 对象和类
- Python 运算符重载
- Python 继承与多态
- Python 异常处理
- Python 模块
- 高级 Python
- Python *args和**kwargs
- Python 生成器
- Python 正则表达式
- 使用 PIP 在 python 中安装包
- Python virtualenv指南
- Python 递归函数
- __name__ == "__main__"是什么?
- Python Lambda 函数
- Python 字符串格式化
- Python 内置函数和方法
- Python abs()函数
- Python bin()函数
- Python id()函数
- Python map()函数
- Python zip()函数
- Python filter()函数
- Python reduce()函数
- Python sorted()函数
- Python enumerate()函数
- Python reversed()函数
- Python range()函数
- Python sum()函数
- Python max()函数
- Python min()函数
- Python eval()函数
- Python len()函数
- Python ord()函数
- Python chr()函数
- Python any()函数
- Python all()函数
- Python globals()函数
- Python locals()函数
- 数据库访问
- 安装 Python MySQLdb
- 连接到数据库
- MySQLdb 获取结果
- 插入行
- 处理错误
- 使用fetchone()和fetchmany()获取记录
- 常见做法
- Python:如何读取和写入文件
- Python:如何读取和写入 CSV 文件
- 用 Python 读写 JSON
- 用 Python 转储对象