增加 Python 随机数生成.

Signed-off-by: rick.chan <chenyang@autoai.com>
This commit is contained in:
rick.chan 2020-09-09 14:57:27 +08:00
parent 7463c611bf
commit 2be2c2b295
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
# Python 随机数生成
以下实例演示了如何生成一个随机数:
```python
# -*- coding: UTF-8 -*-
# Filename : test.py
# author by : www.runoob.com
# 生成 0 ~ 9 之间的随机数
# 导入 random(随机数) 模块
import random
print(random.randint(0,9))
```
以上实例我们使用了 random 模块的 randint() 函数来生成随机数你每次执行后都返回不同的数字0 到 9该函数的语法为
```python
random.randint(a,b)
```
函数返回数字 N N 为 a 到 b 之间的数字a <= N <= b包含 a 和 b。