python_random模块
程序员文章站
2022-05-10 12:09:05
random模块 生成随机验证码 ......
random模块
import random
print(random.random()) # 大于0且小于1之间的小数
print(random.randint(1, 6)) # 大于等于1且小于等于6之间的整数
print(random.randrange(1, 6)) # 大于等于1且小于6之间的整数
print(random.choice([1, 2, 3, [4, 5, 6]])) # 1,2,3或[4,5,6]
print(random.sample([1, 'a', [4, 5, 6]], 2)) # 列表元素任意2个组合
print(random.uniform(1, 3)) # 大于1小于3的小数,如2.5186390629964013
item = [1, 2, 3, 4, 5, 6]
random.shuffle(item) # 打乱item的顺序,相当于"洗牌"
print(item)
生成随机验证码
import random def make_code(n=5): res = '' for i in range(n): s1 = chr(random.randint(65, 90)) s2 = str(random.randint(0, 9)) res += random.choice([s1, s2]) return res print(make_code(6))
上一篇: 搞笑漫画图片系列
下一篇: 陈金培:阿里云三大服务支撑云计算平台
推荐阅读
-
ABP框架的体系结构及模块系统讲解
-
Python中的time模块与datetime模块用法总结
-
springboot 多模块将dao(mybatis)项目拆分出去
-
卸载VS2011 Developer Preview后Sql Server2008 R2建立数据库关系图报“找不到指定的模块”错误的解决方法
-
Python中functools模块的常用函数解析
-
详解Python中contextlib上下文管理模块的用法
-
Python中operator模块的操作符使用示例总结
-
详解Python中heapq模块的用法
-
python 中的列表生成式、生成器表达式、模块导入
-
Spring框架七大模块简单介绍