!pip install opencc-python-reimplemented #安裝套件
code:
# -*- coding: utf-8 -*-
"""
Created on Wed Oct 18 21:29:41 2023
@author: SavingKing
"""
from opencc import OpenCC
text1="我去过清华大学和交通大学,打印机、光盘、内存。"
text2="我去過清華大學和交通大學,印表機、光碟、記憶體。"
openCC = OpenCC('s2t')
# 啟動OpenCC 並設定為簡轉繁
line = openCC.convert(text1)
print(" "+text1)
# 轉換
# 輸出「...交通大学打印机光盘内存」
print("s2t :"+line)
# 輸出「...交通大學打印機光盤內存」
line =openCC.set_conversion('s2twp')
line = openCC.convert(text1)
# 設定為簡轉台灣繁體用字
# 轉換
# 輸出「...交通大學印表機光碟記憶體」
print("s2twp:"+line)
line =openCC.set_conversion('t2s')
line = openCC.convert( text2 )
# 設定為繁轉簡
print(" "+text2)
print("t2s :"+line)
# 轉換
# 輸出「...交交通大學印表機光碟記憶體」
line =openCC.set_conversion('tw2sp')
line = openCC.convert(text2)
# 輸出「...交通大学印表机光碟记忆体」
# 設定為繁轉簡用字
print("tw2sp:"+line)
# 轉換
# 輸出「...交通大学打印机光盘内存」
輸出結果:
推薦hahow線上學習python: https://igrape.net/30afN
近期留言