python生成随机手机号

import random


def random_phone():
        prelist = ["130", "131", "132", "133", "134", "135", "136", "137", "138", "139", "147", "150", "151", "152",
                   "153", "155", "156", "157", "158", "159", "186", "187", "188"]
        return random.choice(prelist) + "".join(random.choice("0123456789")  for i in range(8))


if __name__ == "__main__":
    phone = random_phone()
    print(phone)
原文地址:https://www.cnblogs.com/kite123/p/13739457.html