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的主要内容,如果未能解决你的问题,请参考以下文章

python出现关于模块(i18n)的不能使用的解决方法

低代码平台多语言国际化(i18n)技术方案

常用python日期日志获取内容循环的代码片段

优维低代码:I18n 国际化

python 有用的Python代码片段

Python 向 Postman 请求代码片段