2020年5月3日 星期日

Python 的 Big5 與 UTF-8 檔案編碼轉換程式教學



懶人包:
# 使用 with 的寫法
with open("big5_input.txt", "r", encoding = "UTF-8") as inFile, open("utf8_output.txt", "w", encoding = "cp950") as outFile:
    outFile.write(inFile.read())


https://officeguide.cc/python-big5-utf8-file-encoding-convertion-tutorial/

沒有留言:

張貼留言