python返回汉字首字母示例

内容摘要
这篇文章主要为大家详细介绍了python返回汉字首字母示例,具有一定的参考价值,可以用来参考一下。

对python这个高级语言对此感兴趣的朋友,看看idc笔记做的技术笔记!
def get_fi
文章正文

这篇文章主要为大家详细介绍了python返回汉字首字母示例,具有一定的参考价值,可以用来参考一下。

对python这个高级语言对此感兴趣的朋友,看看idc笔记做的技术笔记!

def get_first_letter(char):

char=char.encode('GBK')

if char<b"\xb0\xa1" or char>b"\xd7\xf9":

return ""

if char<b"\xb0\xc4":

return "a"

if char<b"\xb2\xc0":

return "b"

if char<b"\xb4\xed":

return "c"

if char<b"\xb6\xe9":

return "d"

if char<b"\xb7\xa1":

return "e"

if char<b"\xb8\xc0":

return "f"

if char<b"\xb9\xfd":

return "g"

if char<b"\xbb\xf6":

return "h"

if char<b"\xbf\xa5":

return "j"

if char<b"\xc0\xab":

return "k"

if char<b"\xc2\xe7":

return "l"

if char<b"\xc4\xc2":

return "m"

if char<b"\xc5\xb5":

return "n"

if char<b"\xc5\xbd":

return "o"

if char<b"\xc6\xd9":

return "p"

if char<b"\xc8\xba":

return "q"

if char<b"\xc8\xf5":

return "r"

if char<b"\xcb\xf9":

return "s"

if char<b"\xcd\xd9":

return "t"

if char<b"\xce\xf3":

return "w"

if char<b"\xd1\x88":

return "x"

if char<b"\xd4\xd0":

return "y"

if char<b"\xd7\xf9":

return "z"

注:关于python返回汉字首字母示例的内容就先介绍到这里,更多相关文章的可以留意

代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!