1 2 Fork me on GitHub 6
摘要: # coding:utf-8import itertools as its# 迭代器words = "1234567890"# 生成密码本的位数,五位数,repeat=8r = its.product(words, repeat=8)# 保存在文件中,追加dic = open("E:/passwor 阅读全文
posted @ 2021-04-26 21:41 鼬夜来香 阅读(246) 评论(0) 推荐(0)
1