In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-28 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
This article mainly introduces "how Python converts Chinese to Pinyin". In daily operation, I believe many people have doubts about how Python converts Chinese to Pinyin. The editor consulted all kinds of materials and sorted out simple and easy-to-use operation methods. I hope it will be helpful to answer the doubts about "how Python converts Chinese to Pinyin". Next, please follow the editor to study!
In order to achieve this function, we are using the pypinyin library today, so it is convenient for us to install it in advance before using it.
Pip install pypinyin
Next, let's have a try.
Import pypinyin x = "classmate Huang" pypinyin.pinyin (x)
The results are as follows:
As you can see, the result returned at this time is a list nesting, and have you found that this pinyin still has a tone? , do you feel like you have suddenly returned to the pinyin era of primary school?
At this time, can we use loop + slice to get every pinyin?
For i in pypinyin.pinyin (x): print (I [0])
The results are as follows:
Of course, we don't really want the tone of voice, so what should we do about it? There is a style parameter, using the style=pypinyin.NORMAL parameter, you can directly remove the tone, do not believe you see.
X = "classmate Huang" pypinyin.pinyin (x, style=pypinyin.NORMAL)
The results are as follows:
At this point, in fact, from the demand is very close, here involves several classic Python knowledge points, I hope you must learn, this will be often used. One is the join () function and the other is the enumerate () function.
Word = "classmate Huang" s = "for index,value in enumerate (pypinyin.pinyin (word, style=pypinyin.NORMAL)): if index = = 0: s + =" .join (value) s + = "" else: s + = value [0] [0] s
The results are as follows:
At this point, the study of "how Python converts Chinese to Pinyin" is over. I hope to be able to solve your doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.