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
Can you upgrade to handle the case 'wang4 na2 yi1xie1 dong1xi5 le5'? ("忘 拿 一些 东西 了")
'wang4-na2-yi1xie1-dong1xi5-le5' , '-' is space.
The text was updated successfully, but these errors were encountered:
this should be workingn as expected
from pyzhuyin import pinyin_to_zhuyin test_case = "wang4 na2 yi1 xie1 dong1 xi5 le5" print(list(map(pinyin_to_zhuyin, test_case.split(" "))))
Gives: ['ㄨㄤˋ', 'ㄋㄚˊ', 'ㄧ', 'ㄒㄧㄝ', 'ㄉㄨㄥ', '˙ㄒㄧ', '˙ㄌㄜ']
['ㄨㄤˋ', 'ㄋㄚˊ', 'ㄧ', 'ㄒㄧㄝ', 'ㄉㄨㄥ', '˙ㄒㄧ', '˙ㄌㄜ']
Sorry, something went wrong.
No branches or pull requests
Can you upgrade to handle the case 'wang4 na2 yi1xie1 dong1xi5 le5'? ("忘 拿 一些 东西 了")
'wang4-na2-yi1xie1-dong1xi5-le5' , '-' is space.
The text was updated successfully, but these errors were encountered: