Do these have to be replaced or is it possible to use them in python?
Solved! Go to Solution.
Hi Johannes.
I had the same problem with spanish characters, and I found a solution with this sentence at the first script line:
# -*- coding: cp1252 -*-
Including the comment char, the initial hash key ==> #
If this charcode, cp1252, doesn't work, try another one, UTF-8 or similar.
Good luck!
Luis
Hi Johannes.
I had the same problem with spanish characters, and I found a solution with this sentence at the first script line:
# -*- coding: cp1252 -*-
Including the comment char, the initial hash key ==> #
If this charcode, cp1252, doesn't work, try another one, UTF-8 or similar.
Good luck!
Luis