Python 获取中文字拼音首个字母的方法


Posted in Python onNovember 28, 2018

Python:3.5

代码如下:

def single_get_first(unicode1):
 str1 = unicode1.encode('gbk')
 try:
 ord(str1)
 return str1.decode('gbk')
 except:
 asc = str1[0] * 256 + 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 getPinyin(string):
 if string == None:
 return None
 lst = list(string)
 charLst = []
 for l in lst:
 charLst.append(single_get_first(l))
 return ''.join(charLst)


if __name__ == '__main__':
 print(getPinyin('你好'))

运行结果:

Python 获取中文字拼音首个字母的方法

以上这篇Python 获取中文字拼音首个字母的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
在SAE上部署Python的Django框架的一些问题汇总
May 30 Python
Python实现将DOC文档转换为PDF的方法
Jul 25 Python
Python进阶-函数默认参数(详解)
May 18 Python
Flask框架URL管理操作示例【基于@app.route】
Jul 23 Python
用Python编写一个简单的CS架构后门的方法
Nov 20 Python
Python 图像对比度增强的几种方法(小结)
Sep 25 Python
python SVD压缩图像的实现代码
Nov 05 Python
tensorflow 获取checkpoint中的变量列表实例
Feb 11 Python
python用pip install时安装失败的一系列问题及解决方法
Feb 24 Python
python批量修改xml属性的实现方式
Mar 05 Python
Python如何将装饰器定义为类
Jul 30 Python
Python利用matplotlib绘制折线图的新手教程
Nov 05 Python
Python3爬虫使用Fidder实现APP爬取示例
Nov 27 #Python
python如何查看微信消息撤回
Nov 27 #Python
python中退出多层循环的方法
Nov 27 #Python
为什么Python中没有&quot;a++&quot;这种写法
Nov 27 #Python
django session完成状态保持的方法
Nov 27 #Python
Python3实现腾讯云OCR识别
Nov 27 #Python
python利用百度AI实现文字识别功能
Nov 27 #Python
You might like
Windows IIS PHP 5.2 安装与配置方法
2009/06/08 PHP
PHP 抓取网页图片并且另存为的实现代码
2010/03/24 PHP
php gzip压缩输出的实现方法
2013/04/27 PHP
解析thinkphp中的M()与D()方法的区别
2013/06/22 PHP
ECMall支持SSL连接邮件服务器的配置方法详解
2014/05/19 PHP
PHP实现HTML页面静态化的方法
2015/11/04 PHP
thinkPHP5项目中实现QQ第三方登录功能
2017/10/20 PHP
jquery实现弹出层遮罩效果的简单实例
2014/03/03 Javascript
Javascript 浮点运算精度问题分析与解决
2014/03/26 Javascript
使用GruntJS构建Web程序之安装篇
2014/06/04 Javascript
picLazyLoad 实现图片延时加载(包含背景图片)
2016/07/21 Javascript
详解js界面跳转与值传递
2016/11/22 Javascript
bootstrap——bootstrapTable实现隐藏列的示例
2017/01/14 Javascript
js+css3实现旋转效果
2017/01/20 Javascript
JS开发中百度地图+城市联动实现实时触发查询地址功能
2017/04/13 Javascript
解决vue2.x中数据渲染以及vuex缓存的问题
2017/07/13 Javascript
Element UI框架中巧用树选择器的实现
2018/12/12 Javascript
Mint UI实现A-Z字母排序的城市选择列表
2018/12/28 Javascript
vue+elementUI实现简单日历功能
2020/09/24 Javascript
vue 使用 sortable 实现 el-table 拖拽排序功能
2020/12/26 Vue.js
JavaScript实现切换多张图片
2021/01/27 Javascript
Python urllib、urllib2、httplib抓取网页代码实例
2015/05/09 Python
搞笑的程序猿:看看你是哪种Python程序员
2015/06/12 Python
Python实现文件复制删除
2016/04/19 Python
python使用openpyxl库修改excel表格数据方法
2018/05/03 Python
关于递归的一道.NET面试题
2013/05/12 面试题
人力资源专员岗位职责
2014/01/30 职场文书
机电一体化应届生求职信
2014/08/09 职场文书
2014年社区国庆节活动方案
2014/09/16 职场文书
离婚协议书范本2014
2014/10/27 职场文书
中班下学期个人工作总结
2015/02/12 职场文书
指导老师鉴定意见
2015/06/05 职场文书
阿凡达观后感
2015/06/10 职场文书
2019XX公司员工考核管理制度!
2019/08/07 职场文书
Vertica集成Apache Hudi重磅使用指南
2022/03/31 Servers
《LOL》“克隆大作战”久违归来 幻灵战队皮肤上线
2022/04/03 其他游戏