python获取一组汉字拼音首字母的方法


Posted in Python onJuly 01, 2015

本文实例讲述了python获取一组汉字拼音首字母的方法。分享给大家供大家参考。具体实现方法如下:

#!/usr/bin/env python 
# -*- coding: utf-8 -*- 
def multi_get_letter(str_input): 
  if isinstance(str_input, unicode): 
    unicode_str = str_input 
  else: 
    try: 
      unicode_str = str_input.decode('utf8') 
    except: 
      try: 
        unicode_str = str_input.decode('gbk') 
      except: 
        print 'unknown coding' 
        return 
  return_list = [] 
  for one_unicode in unicode_str: 
    return_list.append(single_get_first(one_unicode)) 
  return return_list 
def single_get_first(unicode1): 
  str1 = unicode1.encode('gbk') 
  try:     
    ord(str1) 
    return str1 
  except: 
    asc = ord(str1[0]) * 256 + ord(str1[1]) - 65536 
    if asc >= -20319 and asc <= -20284: 
      return 'a' 
    if asc >= -20283 and asc <= -19776: 
      return 'b' 
    if asc >= -19775 and asc <= -19219: 
      return 'c' 
    if asc >= -19218 and asc <= -18711: 
      return 'd' 
    if asc >= -18710 and asc <= -18527: 
      return 'e' 
    if asc >= -18526 and asc <= -18240: 
      return 'f' 
    if asc >= -18239 and asc <= -17923: 
      return 'g' 
    if asc >= -17922 and asc <= -17418: 
      return 'h' 
    if asc >= -17417 and asc <= -16475: 
      return 'j' 
    if asc >= -16474 and asc <= -16213: 
      return 'k' 
    if asc >= -16212 and asc <= -15641: 
      return 'l' 
    if asc >= -15640 and asc <= -15166: 
      return 'm' 
    if asc >= -15165 and asc <= -14923: 
      return 'n' 
    if asc >= -14922 and asc <= -14915: 
      return 'o' 
    if asc >= -14914 and asc <= -14631: 
      return 'p' 
    if asc >= -14630 and asc <= -14150: 
      return 'q' 
    if asc >= -14149 and asc <= -14091: 
      return 'r' 
    if asc >= -14090 and asc <= -13119: 
      return 's' 
    if asc >= -13118 and asc <= -12839: 
      return 't' 
    if asc >= -12838 and asc <= -12557: 
      return 'w' 
    if asc >= -12556 and asc <= -11848: 
      return 'x' 
    if asc >= -11847 and asc <= -11056: 
      return 'y' 
    if asc >= -11055 and asc <= -10247: 
      return 'z' 
    return '' 
def main(str_input): 
  a = multi_get_letter(str_input) 
  b = '' 
  for i in a: 
    b= b+i 
  print b 
if __name__ == "__main__": 
  str_input=u'欢迎你' 
  main(str_input)

希望本文所述对大家的Python程序设计有所帮助。

Python 相关文章推荐
python中zip()方法应用实例分析
Apr 16 Python
解决pandas read_csv 读取中文列标题文件报错的问题
Jun 15 Python
python 处理string到hex脚本的方法
Oct 26 Python
scrapy-redis源码分析之发送POST请求详解
May 15 Python
Python 硬币兑换问题
Jul 29 Python
python函数局部变量、全局变量、递归知识点总结
Nov 15 Python
python 视频逐帧保存为图片的完整实例
Dec 10 Python
python numpy数组复制使用实例解析
Jan 10 Python
TensorFLow 不同大小图片的TFrecords存取实例
Jan 20 Python
Python中的wordcloud库安装问题及解决方法
May 27 Python
Python之京东商品秒杀的实现示例
Jan 06 Python
详解基于Facecognition+Opencv快速搭建人脸识别及跟踪应用
Jan 21 Python
python的keyword模块用法实例分析
Jun 30 #Python
Python实现监控程序执行时间并将其写入日志的方法
Jun 30 #Python
python实现爬取千万淘宝商品的方法
Jun 30 #Python
python简单判断序列是否为空的方法
Jun 30 #Python
python检查序列seq是否含有aset中项的方法
Jun 30 #Python
python判断一个集合是否包含了另外一个集合中所有项的方法
Jun 30 #Python
python过滤字符串中不属于指定集合中字符的类实例
Jun 30 #Python
You might like
php获取当前页面完整URL地址
2015/12/30 PHP
php使用CutyCapt实现网页截图保存的方法
2016/10/03 PHP
Laravel框架实现model层的增删改查(CURD)操作示例
2018/05/12 PHP
ext 代码生成器
2009/08/07 Javascript
window.location的重写及判断location是否被重写
2014/09/04 Javascript
jQuery+jsp实现省市县三级联动效果(附源码)
2015/12/03 Javascript
JS中创建函数的三种方式及区别
2016/03/13 Javascript
Node.js操作mysql数据库增删改查
2016/03/30 Javascript
实现JavaScript的组成----BOM和DOM详解
2016/05/18 Javascript
ES6 javascript中class静态方法、属性与实例属性用法示例
2017/10/30 Javascript
如何解决js函数防抖、节流出现的问题
2019/06/17 Javascript
layui自定义插件citySelect实现省市区三级联动选择
2019/07/26 Javascript
JavaScript创建、读取和删除cookie
2019/09/03 Javascript
Vue 实例事件简单示例
2019/09/19 Javascript
微信小程序如何加载数据库真实数据的实现
2020/03/04 Javascript
angular组件间通讯的实现方法示例
2020/05/07 Javascript
[00:15]TI9地铁玩家打卡
2019/08/11 DOTA
Python中关于字符串对象的一些基础知识
2015/04/08 Python
安装ElasticSearch搜索工具并配置Python驱动的方法
2015/12/22 Python
Python基于生成器迭代实现的八皇后问题示例
2018/05/23 Python
Django后台获取前端post上传的文件方法
2018/05/28 Python
FFrpc python客户端lib使用解析
2019/08/24 Python
Python urlopen()和urlretrieve()用法解析
2020/01/07 Python
Python如何用filter函数筛选数据
2020/03/05 Python
使用tensorflow进行音乐类型的分类
2020/08/14 Python
销售主管竞聘书
2014/03/31 职场文书
建筑院校毕业生求职信
2014/06/13 职场文书
2014年小学少先队工作总结
2014/12/18 职场文书
公积金贷款承诺书
2015/04/30 职场文书
2015年保洁员工作总结
2015/05/04 职场文书
情感电台广播稿
2015/08/18 职场文书
教师个人工作总结范文2015
2015/10/14 职场文书
2016年五一劳动节专题校园广播稿
2015/12/17 职场文书
描写九月优美句子(39条)
2019/09/11 职场文书
学会用Python实现滑雪小游戏,再也不用去北海道啦
2021/05/20 Python
springboot + mongodb 通过经纬度坐标匹配平面区域的方法
2021/11/01 MongoDB