摘要:
python dict按照key 排序:1、method 1.items = dict.items()items.sort()for key,value in items: print key, value # print key,dict[key]2、method 2.print key, dict[key] for key in sorted(dict.keys()) python dict按照value排序:method 1:把dictionary中的元素分离出来放到一个list中,对list排序,从而间接实现对dictionary的排序。这个“元素”可以是key,value或者it.. 阅读全文
摘要:
处理中文字符串遇到了繁体和简体中文的转换,python版:1、下载zh_wiki.py及langconvzh_wiki.py:https://github.com/skydark/nstools/blob/master/zhtools/zh_wiki.pylangconv.py:https://github.com/skydark/nstools/blob/master/zhtools/langconv.py2、# -*- coding:utf-8 -*- from langconv import *# 转换繁体到简体line = Converter('zh-hans').co 阅读全文