Hello eladkarako,
on this link
https://stackoverflow.com/questions/2985...-in-python
in the answer it discusses adding
to the top of the Python script, to ensure the right encoding, the first line of this will already be there, also to check the terminal is accepting this encoding.
Also you may like this - http://www.python.org.il/
on this link
https://stackoverflow.com/questions/2985...-in-python
in the answer it discusses adding
Code:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
to the top of the Python script, to ensure the right encoding, the first line of this will already be there, also to check the terminal is accepting this encoding.
Also you may like this - http://www.python.org.il/