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
在多音字参数为True时,汉字“受”出现了不属于它的读音:
>>> pinyin("受", style=Style.TONE3, v_to_u=True,heteronym=True) [['shou4', 'dao4']]
将 heteronym 设置为 True,不进行其他设置,对“受”字求取读音,如:
from pypinyin import pinyin pinyin("受",heteronym=True)
错误地返回为:[['shòu', 'dào']]
[['shòu', 'dào']]
The text was updated successfully, but these errors were encountered:
@EillesWan 感谢反馈!
Sorry, something went wrong.
No branches or pull requests
运行环境
问题描述
在多音字参数为True时,汉字“受”出现了不属于它的读音:
问题复现步骤
将 heteronym 设置为 True,不进行其他设置,对“受”字求取读音,如:
错误地返回为:
[['shòu', 'dào']]
The text was updated successfully, but these errors were encountered: