实现自动输入密码

This commit is contained in:
2025-03-01 23:49:41 +08:00
commit 021be6fa01
11 changed files with 586 additions and 0 deletions

10
password.py Normal file
View File

@@ -0,0 +1,10 @@
# -*- coding: utf-8 -*-
#生成全部的六位数字密码\
print("start")
f = open('passdict6.txt','w+')
for id in range(1000000):
password = str(id).zfill(6)+'\n'
f.write(password)
f.close()
print("end")