python实现随机生成5000个手机号码
2021/7/21 14:42:17
本文主要是介绍python实现随机生成5000个手机号码,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
代码:
'''
import random def phone(): #创建手机号第二位 second=random.choice([3,4,5,7,8,9]) #从这个list里面随机选择一个数字 #创建手机号第三位 third={ 3:random.randint(0,9), #从0-9之间随机生成一个整数int类型 4:random.choice([5,7,9]), #4:[5,7,9][random.randint(0,2)], 5:random.choice([0,1,2,3,4,5,7,8]), #5:[i for i in range(10) if i !=4][random.randint(0,8)], 7:random.choice([2,3,5,6,7,8]), #7:[i for i in range(10) if i not in [4,9]][random.randint(0,7)], 8:random.randint(0,9), 9:random.choice([1,3,8,9]), #9:[1,3,8,9][random.randint(0,2)], }[second] #third后面加上second是由于third的生成要依赖second的随机选择结果 #创建手机号最后八位 suffix=random.randint(9999999,100000000) #拼接手机号 return "1{}{}{}".format(second,third,suffix) #创建批量生成手机号的循环 for i in range(100): randomphone=phone() f = open('token.txt', 'a') f.write(randomphone) f.write('\r') print(randomphone)
这篇关于python实现随机生成5000个手机号码的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-28Python编程基础教程
- 2024-12-27Python编程入门指南
- 2024-12-27Python编程基础
- 2024-12-27Python编程基础教程
- 2024-12-27Python编程基础指南
- 2024-12-24Python编程入门指南
- 2024-12-24Python编程基础入门
- 2024-12-24Python编程基础:变量与数据类型
- 2024-12-23使用python部署一个usdt合约,部署自己的usdt稳定币
- 2024-12-20Python编程入门指南