python 穷举指定长度的密码例子


Posted in Python onApril 02, 2020

本程序可根据给定的字符字典,穷举指定长度的所有字符串:

def get_pwd(str, num):
  if(num == 1):
   for x in str:
    yield x
  else:
   for x in str:
    for y in get_pwd(str, num-1):
     yield x+y
 
strKey="abc"
for x in get_pwd(strKey,3):
 print x

结果:

aaa
aab
aac
aba
abb
abc
aca
acb
acc
baa
bab
bac
bba
bbb
bbc
bca
bcb
bcc
caa
cab
cac
cba
cbb
cbc
cca
ccb
ccc

本程序占用内存小,生成速度快,欢迎尝试!!!

补充知识:Python 穷举法, 二分法 与牛顿-拉夫逊方法求解平方根的性能对比

穷举法, 二分法 与牛顿-拉夫逊方法求解平方根的优劣,从左到右依次递优。

经过测试,穷举法基本超过 1 分钟,还没有出数据;

二分法只要区区1秒不到就出结果了。

牛顿-拉夫逊是秒出,没有任何的停顿。

numberTarget =int(input("Please enter a number:"))
numberSqureRoot = 0
while(numberSqureRoot<abs(numberTarget)):
 if numberSqureRoot**2 >= abs(numberTarget):
  break
 numberSqureRoot = numberSqureRoot + 1

if numberSqureRoot**2 != numberTarget:
 print("Your number %s is not a perfect squre, the square root is %s " % ( numberTarget,numberSqureRoot) )
else:
 if numberTarget < 0 :
  numberSqureRoot = -numberSqureRoot
 print("Your number %s is a perfect squre, the square root is %s " % ( numberTarget, numberSqureRoot))

print("now we begin to calculate the binary search...")

numberTarget=int(input("Please enter the number for binary search..."))
numberSqureRoot = 0

lowValue = 0.0
highValue=numberTarget*1.0

epsilon = 0.01
numberSqureRoot = (highValue + lowValue)/2

while abs(numberSqureRoot**2 - numberTarget) >=epsilon:
 print("lowValue:%s, highValue:%s, currentValue:%s"%(lowValue,highValue,numberSqureRoot))
 if numberSqureRoot**2<numberTarget:
  lowValue=numberSqureRoot
 else:
  highValue=numberSqureRoot
 numberSqureRoot = (lowValue+highValue) /2

print("The number %s has the squre root as %s " %(numberTarget,numberSqureRoot))


print("now we begin to calculate the newTon search...")

numberTarget=int(input("Please enter the number for newTon search..."))
numberSqureRoot = 0

epsilon = 0.01
k=numberTarget
numberSqureRoot = k/2.0

while( abs(numberSqureRoot*numberSqureRoot - k)>=epsilon):
 numberSqureRoot=numberSqureRoot-(((numberSqureRoot**2) - k)/(2*numberSqureRoot))

print("squre root of %s is %s " %(numberTarget,numberSqureRoot))

以上这篇python 穷举指定长度的密码例子就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python不规范的日期字符串处理类
Jun 10 Python
python通过文件头判断文件类型
Oct 30 Python
Python正则抓取网易新闻的方法示例
Apr 21 Python
利用Python批量提取Win10锁屏壁纸实战教程
Mar 27 Python
Python设计模式之组合模式原理与用法实例分析
Jan 11 Python
Python模拟百度自动输入搜索功能的实例
Feb 14 Python
python导入坐标点的具体操作
May 10 Python
django使用haystack调用Elasticsearch实现索引搜索
Jul 24 Python
详解django实现自定义manage命令的扩展
Aug 13 Python
numpy.random.shuffle打乱顺序函数的实现
Sep 10 Python
Python selenium爬取微博数据代码实例
May 22 Python
Python中X[:,0]和X[:,1]的用法
May 10 Python
python3安装OCR识别库tesserocr过程图解
Apr 02 #Python
python简单的三元一次方程求解实例
Apr 02 #Python
Python 线性回归分析以及评价指标详解
Apr 02 #Python
Django REST framwork的权限验证实例
Apr 02 #Python
详解Ubuntu环境下部署Django+uwsgi+nginx总结
Apr 02 #Python
在 Pycharm 安装使用black的方法详解
Apr 02 #Python
Python Numpy中数据的常用保存与读取方法
Apr 01 #Python
You might like
php环境配置之CGI、FastCGI、PHP-CGI、PHP-FPM、Spawn-FCGI比较?
2011/10/17 PHP
20个2014年最优秀的PHP框架回顾
2014/10/22 PHP
PHP用户验证和标签推荐的简单使用
2016/10/31 PHP
Laravel实现autoload方法详解
2017/05/07 PHP
Thinkphp 框架基础之源码获取、环境要求与目录结构分析
2020/04/27 PHP
通过PHP实现获取访问用户IP
2020/05/09 PHP
JQuery入门—编写一个简单的JQuery应用案例
2013/01/03 Javascript
Js点击弹出下拉菜单效果实例
2013/08/12 Javascript
js调用图片隐藏&amp;显示实现代码
2013/09/13 Javascript
《JavaScript高级编程》学习笔记之object和array引用类型
2015/11/01 Javascript
基于Phantomjs生成PDF的实现方法
2016/11/07 Javascript
jquery广告无缝轮播实例
2017/01/05 Javascript
对于input 框限定输入值为浮点型的js代码
2017/09/25 Javascript
Vue匿名插槽与作用域插槽的合并和覆盖行为
2019/04/22 Javascript
webpack4手动搭建Vue开发环境实现todoList项目的方法
2019/05/16 Javascript
el-select 下拉框多选实现全选的实现
2019/08/02 Javascript
ES6中let、const的区别及变量的解构赋值操作方法实例分析
2019/10/15 Javascript
axios封装与传参示例详解
2020/10/18 Javascript
使用python实现生成用户信息
2017/03/20 Python
Python爬虫PyQuery库基本用法入门教程
2018/08/04 Python
浅谈PYTHON 关于文件的操作
2019/03/19 Python
Django 创建新App及其常用命令的实现方法
2019/08/04 Python
正则给header的冒号两边参数添加单引号(Python请求用)
2019/08/09 Python
html5用video标签流式加载的实现
2020/05/20 HTML / CSS
斯德哥尔摩通票:Stockholm Pass
2018/01/09 全球购物
Coltorti Boutique官网:来自意大利的设计师品牌买手店
2018/11/09 全球购物
香港最大的洋酒零售连锁店:屈臣氏酒窖(Watson’s Wine)
2018/12/10 全球购物
递归计算如下递归函数的值(斐波拉契)
2012/02/04 面试题
3个CCIE对一个工程师的面试题
2012/05/06 面试题
考试违纪检讨书
2014/02/02 职场文书
一年级小学生评语大全
2014/12/25 职场文书
兼职安全员岗位职责
2015/02/15 职场文书
2015学校师德师风工作总结
2015/04/22 职场文书
书法社团活动总结
2015/05/07 职场文书
公司开业致辞
2015/07/29 职场文书
Go Gin实现文件上传下载的示例代码
2021/04/02 Golang