pinyin.py - 将汉字转成拼音的Python模块

jopen 12年前

利用Python实现将汉字转拼音

示例:

from pinyin import PinYin    test = PinYin()  test.load_word()  test.hanzi2pinyin(string='钓鱼岛是中国的')

输出:

test.hanzi2pinyin(string='钓鱼岛是中国的')  ['diao', 'yu', 'dao', 'shi', 'zhong', 'guo', 'de']      test.hanzi2pinyin_split(string='钓鱼岛是中国的', split="-")  diao-yu-dao-shi-zhong-guo-de

项目主页:http://www.open-open.com/lib/view/home/1347604909100