美文网首页
获取国别码

获取国别码

作者: Don_Mills_3675 | 来源:发表于2017-10-30 20:26 被阅读0次

    i18n已被移除pygal,若想引用,需要pip安装

    pip install pygal_maps_world
    

    然后

    from pygal.maps.world import COUNTRIES
    
    for country_code in sorted(COUNTRIES.keys()):
        print(country_code,COUNTRIES[country_code])
    

    制作世界地图同理:

    import pygal.maps.world
    
    world_map=pygal.maps.world.World()
    world_map.title='美洲'
    
    world_map.add('北美洲',['ca','mx','us'])
    world_map.add('中美洲',['bz', 'cr', 'gt', 'hn', 'ni', 'pa', 'sv'])
    world_map.add('南美洲',['ar', 'bo', 'br', 'cl', 'co', 'ec', 'gf',
        'gy', 'pe', 'py', 'sr', 'uy', 've'])
    
    file_path='C:\\Users\\luna\\Desktop\\documents\\data_science\\data_science\\python\\Python_first\\project_data\\下载数据\\世界人口地图\\美洲.svg'
    world_map.render_to_file(file_path)
    

    相关文章

      网友评论

          本文标题:获取国别码

          本文链接:https://www.haomeiwen.com/subject/ejmmpxtx.html