ora_yoshito
@ora_yoshito (Yoshito Inoue)

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

”SyntaxError:Non-ASCII character”について

解決したいこと

pythonの”SyntaxError:Non-ASCII character”のエラーについて

例)
print("初めまして")とmain.pyに入力
そして、エディタで
$ python main.py
とすると、”SyntaxError:Non-ASCII character”が起こった

発生している問題・エラー

”SyntaxError:Non-ASCII character”

該当するソースコード

$ python main.py

自分で試したこと

先のプログラムmain.pyの冒頭で、UTF-8のエンコーディングを指定してみる。
-- coding: utf-8 --
print("初めまして")
そうすると、実行できた。
なおPython3だとデフォルトのエンコーディングがUTF-8なので、宣言が不必要になる。

0

1Answer

意図せずPython2で実行している可能性が考えられます。

$ python3 main.py

として実行してみてください。

1Like

Comments

  1. @ora_yoshito

    Questioner

    ありがとうございます

Your answer might help someone💌