当前位置:Gxlcms > Python > Python随机生成数模块random使用实例

Python随机生成数模块random使用实例

时间:2021-07-01 10:21:17 帮助过:59人阅读

代码
代码如下:


#!/usr/bin/env python
#coding=utf-8
import random

#生成[0, 1)直接随机浮点数
print random.random()

#[x, y]中的随机整数
print random.randint(1, 100)

list = [1, 2, 3, 4, 5]
#随机选取
print random.choice(list)

#随机打乱
random.shuffle(list)
print list


输出

人气教程排行