python入门:常用模块—random模块
Posted 芳姐
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python入门:常用模块—random模块相关的知识,希望对你有一定的参考价值。
有很多地方需要用到随机字符,比如登录网站的随机验证码,通过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模块的主要内容,如果未能解决你的问题,请参考以下文章
Python学习——02-Python基础——7-模块——time与random等常用模块与包
python常用模块(模块和包的解释,time模块,sys模块,random模块,os模块,json和pickle序列化模块)