SyntaxError: Non-ASCII character '\xe6' in file sample_001.py on line 2, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
文字エンコードの定義をせずに、日本語を使った場合に出るエラー
日本語を扱うには、一番最初に文字エンコードの定義が必要
# coding:utf-8
print("こんにちは")
Go to list of users who liked
More than 1 year has passed since last update.
SyntaxError: Non-ASCII character '\xe6' in file sample_001.py on line 2, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
文字エンコードの定義をせずに、日本語を使った場合に出るエラー
日本語を扱うには、一番最初に文字エンコードの定義が必要
# coding:utf-8
print("こんにちは")
Register as a new user and use Qiita more conveniently
Go to list of users who liked