python - How to convert a script to UTF-8 -


i have sikuli/python script works good.
since dutch have same letters in our alphabet english alphabet.

now there 1 letter have not occur in alphabet, used in dutch grammar.
ë.
sikuli falls on becuase doesn't belong in english alphabet.
have belgium custumers might use french on in future.

how can make scripts @ utf-8, , not @ ascii (what seems default)?

in order specify module shall include utf-8 encoding, use encoding declaration in header or footer of file, per pep 0263:

# -*- coding: utf-8 -*- 

Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -