python random 随机选择操作

2021-06-28 05:03

阅读:472

标签:form   int   shuffle   choice   shu   col   随机数   python   odi   

# -*- coding:utf-8 -*-
import random
arr = [A,B,C,D,E,F]
#生成(0.0, 1.0)的随机数
print random.random() 
#0.133648715391
 
# 生成随机浮点数 0print random.uniform(0,100) 
#10.535881824
 
#生成随机整数 0print random.randint(0,100)  
 
#随机生成一个0-100内3的倍数
print random.randrange(0,100,3)
 
#29
#随机选择一个元素
print random.choice(1234567890) 
#6
print random.choice(arr) 
#B
 
#随机选择指定长度不重复元素
print random.sample(1234567890,4) 
#[‘3‘, ‘8‘, ‘1‘, ‘9‘]
print random.sample([A,B,C,D,E,F],4) 
#[‘C‘, ‘B‘, ‘A‘, ‘D‘]
        
#打乱列表       
random.shuffle(arr)
print arr 
#[‘E‘, ‘B‘, ‘D‘, ‘A‘, ‘C‘, ‘F‘]
 
 
    

 

python random 随机选择操作

标签:form   int   shuffle   choice   shu   col   随机数   python   odi   

原文地址:https://www.cnblogs.com/caiyishuai/p/9650639.html


评论


亲,登录后才可以留言!