在python3中绘制地图,国别码:人口数量

在python3中绘制地图,国别码:人口数量

import json
import pygal.maps.world as pygal
from country_codes import get_country_code

#将数据加载到一个列表上
filename='population_data.json'
with open(filename) as f:
    #函数json.load()将数据转换为Python能够处理的格式,这里是一个列表
    #一个列表中,存在多个字典
    pop_data=json.load(f)

#遍历列表pop_data,其中每一个元素均为字典
#每个字典,为4个键-值 对
#将每个字典存储在变量pop_dict中
#创建一个包含人口数量的字典
cc_populations={}
for pop_dict in pop_data:
    #根据字典中的“键”,查找对应的“值”
    if pop_dict['Year'] == '2010':
        country_name=pop_dict['Country Name']
        population=int(float(pop_dict['Value']))
        # print(country_name + ":" + str(population))
        #调用函数,提取2位的国家代码
        code=get_country_code(country_name)
        if code:
            cc_populations[code]=population

wm=pygal.World()
wm.title='World Population in 2010,by Country'
#第一个参数:标题
#第二个参数:字典组成的 国别码:人口数量
wm.add('2010',cc_populations)
#生成 .svg 文件
wm.render_to_file('world_population.svg')
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值