码迷,mamicode.com
首页 > 编程语言 > 详细

python自动生成电话号

时间:2020-05-10 23:11:06      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:自动   phone   format   def   手机   拼接   mat   hone   pre   

# 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自动生成电话号

标签:自动   phone   format   def   手机   拼接   mat   hone   pre   

原文地址:https://www.cnblogs.com/lee88888/p/12865600.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!