‘‘‘你是一个高级测试工程师,现在要做性能测试,需要你写一个函数,批量生成一些注册使用的账号。
1 import random,string 2 3 def users(count,legth): 4 with open(‘users.txt‘,‘w‘) as f: 5 for i in range(count): 6 str1 = ‘‘.join(random.sample(string.ascii_letters,legth-1)) 7 str2 = ‘‘.join(random.sample(string.digits,3)) 8 f.write(str1 + str2 + ‘@163.com‘ + ‘\n‘) 9 count = int(input(‘请输入需要产生邮箱的个数:‘).strip()) 10 legth = int(input(‘请输入邮箱长度:‘).strip()) 11 users(count,legth)
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。