Python3.6全栈开发实例[018]
Posted Apollo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3.6全栈开发实例[018]相关的知识,希望对你有一定的参考价值。
18.车牌区域划分, 现给出以下车牌.根据车牌的信息, 分析出各省的车牌持有量.(升级题)
result = {} for car in cars: location = locals[car[0]] result[location] = result.get(location,0)+1 print(result)
result = {} for car in cars: # car 车牌子 first_name = car[0] # 山东 location = locals[first_name] # 进行统计 if result.get(location) == None: # 如果获取当前位置. 找不到对应的车辆的数量 result[location] = 1 # 第一辆车 else: result[location] = result[location] + 1 # 第n量 print(result)
以上是关于Python3.6全栈开发实例[018]的主要内容,如果未能解决你的问题,请参考以下文章