随机生成车牌号【python实现】

文章目录

    • 问题描述
    • 实现方式
    • result

问题描述

某市随机生成车辆号牌的规则是:号牌字头为"某A-","某B-"等(字母为除了C以外的A~H范围内的大写字母),
字头后面由5位字符组成,第1位必须是数字;第2、3、4、5位可以是任意数字或不含字母"O"的大写英文字母。
程序功能为:调用自己设计的函数license_plate(),随机生成5个车辆号牌,等待输入一个心仪号码的序号
选择号牌,并将其打印输出。

实现方式

import random

def genrndchar(metachar):
    return metachar[int(random.random() * len(metachar))]


def license_plate():
    s = "某"
    s = s + genrndchar(['A', 'B', 'C', 'D', 'E', 'H'])
    s = s + '-'
    s = s + genrndchar(['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'])
    for i in range(4):
        s = s + genrndchar(
            ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K',
             'L', 'M', 'N', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'])
    return s


lst = []
for i in range(5):
    plate = license_plate()
    lst.append(plate)
    print(str(i + 1) + ":" + plate)
x = int(input("请输入您心仪的号牌序号:")) - 1
print("您选中的号牌为:" + lst[x])

result

1:某B-2MIR4
2:某C-5YWG8
3:某D-15ML2
4:某E-2QXV2
5:某E-2ZUDV
请输入您心仪的号牌序号:5
您选中的号牌为:某E-2ZUDV

Process finished with exit code 0

你可能感兴趣的:(每日一练,python小记,python,学习)