摘要: # -*- coding: utf-8 -*- from pinyin import * rawFile = open('top500.txt') top500pinyin = open('top500pinyin.txt','w') for name in rawFile: name = name.decode('gbk').split()[1].encode('utf-8') ... 阅读全文
posted @ 2018-07-17 19:01 webappsec93 阅读(174) 评论(0) 推荐(0) 编辑