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
复现代码: python from hanziconv import HanziConv print(HanziConv.toSimplified('呼叫')) 预期结果:"呼叫" 实际结果:"唿叫"
python from hanziconv import HanziConv print(HanziConv.toSimplified('呼叫'))
The text was updated successfully, but these errors were encountered:
fixed 呼 - berniey#16
d06b43a
@Joshua1986 I have fixed it now it should be ok
print(HanziConv.toSimplified("呼叫")) # 呼叫
Sorry, something went wrong.
@loretoparisi As of version hanziconv-0.3.2 (installed using pip), this issue is not solved.
hanziconv-0.3.2
>>> s = '呼叫' >>> print(HanziConv.toTraditional(s)) 呼叫 >>> print(HanziConv.toSimplified(s)) 唿叫
No branches or pull requests
复现代码:
python from hanziconv import HanziConv print(HanziConv.toSimplified('呼叫'))
预期结果:"呼叫"
实际结果:"唿叫"
The text was updated successfully, but these errors were encountered: