python自动生成电话号

Posted 书院小先生

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python自动生成电话号相关的知识,希望对你有一定的参考价值。

# Author:BeeLe

# -*- coding: utf-8 -*-
import random


def create_phone():
# 第二位数字
second = [3, 4, 5, 7, 8][random.randint(0, 4)]
# 第三位数字
third = {3: random.randint(0, 9),
4: [5, 7, 9][random.randint(0, 2)],
5: [i for i in range(10) if i != 4][random.randint(0, 8)],
7: [i for i in range(10) if i not in [4, 9]][random.randint(0, 7)],
8: random.randint(0, 9), }[second]
# 最后八位数字
suffix = random.randint(9999999, 100000000)
# 拼接手机号
return "1{}{}{}".format(second, third, suffix)
# p = create_phone()
# 生成手机号
# print(p)

以上是关于python自动生成电话号的主要内容,如果未能解决你的问题,请参考以下文章

小知识点Python随机生成 Phone 号码,测试用~

小知识点Python随机生成 Phone 号码,测试用~

python foneygen:根据北美编号计划规则生成所有可能的可用美国电话号码列表。

python实现个人信息随机生成

Python Selenium 自动填充问题

随机电话号码生成器怎么在线使用?