任务是让用户键入车牌号码,代码必须识别它是否是标准车牌,例如FP78 TYR
或是否是非标准车牌,例如{ {1}}有人可以制作一些代码来帮助识别号码牌的格式吗?
答案 0 :(得分:0)
试试这个并告诉我这是否是你要找的:
lplate=input("Enter license plate number:")
comp=lplate.split()
if (len(comp[1])==2):
print("Non standard number plate.")
elif (len(comp[1])==3):
print("Standard number plate.")
else:
print("Number plate not recognized.")