1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Python2で実行時にSyntaxErrorになる件(UTF-8)

Last updated at Posted at 2019-04-27

python実行時にSyntaxErrorになる件

$ ./hoge.py
  File "./hoge.py", line 7
SyntaxError: Non-ASCII character '\xe3' in file ./hoge.py on line 7, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details

ヘッダ行をこうした

hoge.py
#!/usr/bin/env python
# -*- coding: utf-8 -*-

参考(リスペクト)

1
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?