We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我希望构建一个韵母表或者音节表,来显示每个韵母或者音节中包含了文章的多少个字。多音字一律重复计数。 以音节表为例。它的行是声母,列是韵母。然后每格表示这个音节。 但是多音字模式并不能通过遍历由 pinyin(ch,style=Style.INITIALS,heteronym=True), pinyin(ch,style=Style.FINALS,heteronym=True) 所组成的 tuple 来确定每一个音节的行列。因为多音统计时被合并过,所以它不能一一对应。
pinyin(ch,style=Style.INITIALS,heteronym=True)
pinyin(ch,style=Style.FINALS,heteronym=True)
另一个解决方案是直接记录 f = pinyin(ch,style=Style.TONE3,heteronym=True),然后试图套用 finals(f[0][0]) 来得到这个音节的韵母。但是这个音节转韵母的函数并不存在。
f = pinyin(ch,style=Style.TONE3,heteronym=True)
finals(f[0][0])
>>> from pypinyin import * >>> pinyin('噷',style=Style.TONE,heteronym=True) [['hm', 'xīn', 'hēn']] >>> pinyin('噷',style=Style.FINALS,heteronym=True) [['in', 'en']] >>> pinyin('噷',style=Style.INITIALS,heteronym=True) [['h', 'x']]
>>> from pypinyin import * >>> pinyin('噷',style=Style.TONE,heteronym=True) [['hm', 'xīn', 'hēn']] >>> pinyin('噷',style=Style.FINALS,heteronym=True) [['', 'in', 'en']] >>> pinyin('噷',style=Style.INITIALS,heteronym=True) [['h', 'x', 'h']]
>>> from pypinyin import * >>> pinyin('噷',style=Style.TONE,heteronym=True) [['hm', 'xīn', 'hēn']] >>> pinyin('噷',style=Style.FINALS,heteronym=True) [['m', 'in', 'en']] >>> pinyin('噷',style=Style.INITIALS,heteronym=True) [['h', 'x', 'h']]
The text was updated successfully, but these errors were encountered:
你的这个需求,可以考虑用 #225 (comment) 这里的方法对拼音做二次处理去获取相应的声母和韵母。
Sorry, something went wrong.
哦哦哦,看到转换函数了!okk 此外,对这些现代汉语中已经统读的字或者已经消亡的读音,不知道是应该怎么处置。 它似乎对我的输入法造成了不小的麻烦。
>>> pinyin('之', heteronym=True) [['zhī', 'zhū', 'zhì']] >>> pinyin('怕', heteronym=True) [['pà', 'bó']] >>> pinyin('跑', heteronym=True) [['pǎo', 'páo', 'bó']] >>> pinyin('重', heteronym=True) [['zhòng', 'chóng', 'tóng']]
可以看看这个 issue 里提到的方法: #198
No branches or pull requests
运行环境
问题描述
我希望构建一个韵母表或者音节表,来显示每个韵母或者音节中包含了文章的多少个字。多音字一律重复计数。
以音节表为例。它的行是声母,列是韵母。然后每格表示这个音节。
但是多音字模式并不能通过遍历由
pinyin(ch,style=Style.INITIALS,heteronym=True)
,pinyin(ch,style=Style.FINALS,heteronym=True)
所组成的 tuple 来确定每一个音节的行列。因为多音统计时被合并过,所以它不能一一对应。另一个解决方案是直接记录
f = pinyin(ch,style=Style.TONE3,heteronym=True)
,然后试图套用finals(f[0][0])
来得到这个音节的韵母。但是这个音节转韵母的函数并不存在。问题复现步骤
我希望看到的输出
我希望看到的另一种输出
The text was updated successfully, but these errors were encountered: