python i18n
Posted endian11
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python i18n相关的知识,希望对你有一定的参考价值。
- 现在pygal已经没有i18n模块,要改用
pygal_maps_world.i18n(pycharm直接安装)
-
import json from pygal_maps_world.i18n import COUNTRIES fileName = "population_data.json" with open(fileName) as f: pop_data = json.load(f) # json.load()将数据转化为python能够处理的格式,这里是一个列表 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)) def get_country_code(country_name): for code, name in COUNTRIES.items(): if name == country_name: return code return None print(get_country_code(‘Andorra‘))
以上是关于python i18n的主要内容,如果未能解决你的问题,请参考以下文章