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
好像“地”的拼音总是di的,从来不是de,比如:
你应该慢慢地走。 --> nǐ yīng gāi màn màn dì zǒu 。
你应该慢慢地走。
nǐ yīng gāi màn màn dì zǒu 。
0.39.1版没有这个问题。可能这个问题跟 #220 有关系。
The text was updated successfully, but these errors were encountered:
感谢反馈,这个问题暂时没有特别好的解决办法
Sorry, something went wrong.
可以试试搭配最新版的 pypinyin-dict 模块使用来解决这个问题:
In [1]: from pypinyin import lazy_pinyin, Style In [2]: lazy_pinyin('你应该慢慢地走。', style=Style.TONE) Out[2]: ['nǐ', 'yīng', 'gāi', 'màn', 'màn', 'dì', 'zǒu', '。'] In [3]: from pypinyin_dict.phrase_pinyin_data import di In [4]: di.load() In [5]: lazy_pinyin('你应该慢慢地走。', style=Style.TONE) Out[5]: ['nǐ', 'yīng', 'gāi', 'màn', 'màn', 'de', 'zǒu', '。']
感谢 @R0uter 分享 地 相关的词语拼音 mozillazg/phrase-pinyin-data#26
地
No branches or pull requests
运行环境
问题描述
好像“地”的拼音总是di的,从来不是de,比如:
你应该慢慢地走。
-->nǐ yīng gāi màn màn dì zǒu 。
0.39.1版没有这个问题。可能这个问题跟 #220 有关系。
The text was updated successfully, but these errors were encountered: