使用python取4位小数点的随机数
时间: 2024-01-21 22:17:12 浏览: 106
python 实现随机数
可以使用Python的random模块来生成4位小数点后的随机数,具体代码如下:
```python
import random
rand_num = round(random.uniform(0,1), 4)
print(rand_num)
```
其中,`random.uniform(0,1)`会生成0到1之间的随机浮点数,`round()`函数会将随机数保留4位小数点。运行上述代码会输出一个4位小数点的随机数。
阅读全文