I'm new to python and I'm getting this error:
SyntaxError: Non-ASCII character '\xff' in file 'hiragana.py' on line 1, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
This is my code:
# -*- coding: utf-8 -*-
hiragana_map = {"A":u"あ","I":u"い","U":u"う","E":u"え","O":u"お"}
I tried it without the u's aswell. It doesn't make a difference. I'm using the Pycharm communitiy edition. In the encoding settings it says the file is encoded with UTF-16LE.
I'd appreciate any hints.