文章目录
- 一、随机数生成并保存到本地
一、随机数生成并保存到本地
20190621 – 对用户系统随机优惠码(数字+小写字符)进行爆破指定的随机数生成脚本。
# -*- coding: utf-8 -*-
# 导入random,string模块
import
random
,
string
# 控制循环遍历次数(生成1000次)
for
n
in
range
(
1000
)
:
# join将随机字符的列表转换为字符串格式
ran_str2
=
''
.
join
(
random
.
sample
(
'abcdefghijklmnopqrstuvwxyz0123456789'
,
9
)
)
# 将随机的数据保存到本地random.txt文件
with
open
(
"C:\\Users\\Administrator\\Desktop\\random.txt"
,
'a'
,
encoding
=
'utf-8'
)
as
file
:
file
.
write
(
ran_str2
+
'\n'
)