python 生成随机四位数
时间: 2023-10-29 20:53:15 浏览: 117
Python生成随机数的方法
Python中可以使用random模块生成随机数。具体方法如下:
1. 导入random模块
```python
import random
```
2. 生成随机整数
```python
# 生成0到9之间的随机整数
random.randint(0, 9)
```
3. 生成随机浮点数
```python
# 生成0到1之间的随机浮点数
random.random()
```
4. 生成指定范围内的随机浮点数
```python
# 生成1到10之间的随机浮点数
random.uniform(1, 10)
```
5. 从序列中随机选择一个元素
```python
# 从列表中随机选择一个元素
random.choice(['apple', 'banana', 'orange'])
```
6. 打乱序列中的元素顺序
```python
# 打乱列表中元素的顺序
lst = [1, 2, 3, 4, 5]
random.shuffle(lst)
print(lst)
```
以上就是Python中生成随机数的方法。
阅读全文