在Python 3 編碼sys.stdout 問題: 問題:答案:設定Python 3 中 sys.stdout 的編碼,可以使用 Python 3.7 中引入的 reconfigure() 方法。此方法可讓您指定編碼,並在需要時處理編碼錯誤:sys.stdout.reconfigure(encoding='utf-8') sys.stdout.reconfigure(encoding='utf-8', errors='ignore') # Ignore encoding errors登入後複製透過利用reconfigure(),您可以有效地將標準輸出的編碼更改為UTF-8 或任何其他Python 支援的編碼。