1、数据构造
Python生成a++.txt代码如下:注意a.txt文件的路径
i = 1 with open('a.txt','w') as f: while i < 1001: f.write('loginname'+str(i)+',''loginpass'+str(i)+'\n') i+=1
2、登录脚本
3、数据读取