概述
import itertools as its
word=input("其输入可能是密码的字符:")
word_len=int(input("密码长度:"))
r=its.product(word,repeat=word_len)
dict=open(".pyhton密码本.txt",'a')
for i in r:
dict.write("".join(i))
dict.write("".join('n'))
dict.close()
print("生成成功!")
最后
以上就是秀丽水杯为你收集整理的生成自己的密码本的全部内容,希望文章能够帮你解决生成自己的密码本所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复