前提・実現したいこと
VScodeで日本語(全角文字全般)を出力できない
発生している問題・エラーメッセージ
全角文字を入力すると以下がターミナルに出力されてしまいます。
"#"を入れてコメント扱いとしても同じ結果が出ます。
ちなみにデバッグF5でも同じ結果になります
C:\Users\user\Documents\Python\VScode>C:/Users/user/AppData/Local/Programs/Python/Python38-32/python.exe c:/Users/user/Documents/Python/VScode/hellow.py
File "c:/Users/user/Documents/Python/VScode/hellow.py", line 2
SyntaxError: Non-UTF-8 code starting with '\xa4' in file c:/Users/user/Documents/Python/VScode/hellow.py on line 2, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
該当のソースコード
Python
1print("hellow") 2print("こんにちわ")
試したこと
下ツールバーからエンコードを変更
EUC-JP,Shift JIS,UTF-8
拡張機能
Japanese Language Pack for Visual Studio Code
Japanese Word Handler
Zenkaku
をインストール
settings.json
"files.encoding": "shiftjis",
を追加
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー