10 lines
214 B
Python
10 lines
214 B
Python
|
# -*- 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")
|