码迷,mamicode.com
首页 > 其他好文 > 详细

random模块 随机数

时间:2021-06-30 18:41:08      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:字符   返回值   choice   ice   模块   随机数   个数   and   随机   

import random
# 随机数
print(random.randrange(1,2))
# 返回值从列表里拿一个字符 
print(random.choice([1,2,3]))
# 返回值,从列表里拿N个数据,放在列表里
print(random.sample([1,2,3],2))
# 洗牌
arr = list(range(1,10))
random.shuffle(arr)

 

random模块 随机数

标签:字符   返回值   choice   ice   模块   随机数   个数   and   随机   

原文地址:https://www.cnblogs.com/3-wusen/p/14954459.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!