码迷,mamicode.com
首页 > 编程语言 > 详细

python入门:常用模块—random模块

时间:2018-05-23 02:18:27      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:登录   abc   生成   sam   family   ascii   数据集   style   通过   

有很多地方需要用到随机字符,比如登录网站的随机验证码,通过random模块可以很容易生成随机字符串

 

import  random
print(random.randrange(1, 10))      # 返回1-10之间的一个随机数,不包括10
print(random.randint(1, 10))        # 返回1-10之间的一个随机数,包括10
print(random.randrange(0, 100, 2))  # 随机选取1到100间的偶数
print(random.random)    # 返回随机浮点数
print(random.choice(‘abce3#&@1‘))       # 返回一个给定数据集合中的随机字符

print(random.sample(‘abcdefghij‘, 3))   # 从多个字符中选取特定数量的字符

# 生成随机字符串
import string
str1 = ‘‘.join(random.sample(string.ascii_lowercase + string.digits, 6))
print(str1)

# 洗牌
a = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
print(random.shuffle(a))

  

python入门:常用模块—random模块

标签:登录   abc   生成   sam   family   ascii   数据集   style   通过   

原文地址:https://www.cnblogs.com/mike-liu/p/9074794.html

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