You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
448 B
18 lines
448 B
from pypinyin import lazy_pinyin
|
|
from pypinyin.contrib.uv import V2UMixin
|
|
from pypinyin.converter import DefaultConverter
|
|
from pypinyin.core import Pinyin
|
|
|
|
|
|
class MyConverter(V2UMixin, DefaultConverter):
|
|
pass
|
|
|
|
|
|
my_pinyin = Pinyin(MyConverter())
|
|
|
|
|
|
def test_v2u():
|
|
assert lazy_pinyin('战略') == ['zhan', 'lve']
|
|
assert my_pinyin.lazy_pinyin('战略') == ['zhan', 'lüe']
|
|
assert lazy_pinyin('战略', v_to_u=True) == ['zhan', 'lüe']
|