Although I included
# -*- coding: utf-8 -*-
in the first line of the python file, I keep getting
SyntaxError: Non-ASCII character '\xfe' in file C:\Users\user\PycharmProjects\my_project\my_script.py on line 1, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details
I use PyCharm Community Edition on Windows 7. Please help.

reload(sys);sys.setdefaultencoding('utf8')at the start. (It is the same as shebang)