实现自动输入密码
This commit is contained in:
10
password.py
Normal file
10
password.py
Normal 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")
|
Reference in New Issue
Block a user