Estou executando essa simples linha no python 2 no entanto retorna erro de enconding logo abaixo:
nome, idade = "Fernando", 28
print('A idade de %s é %s' % (nome, idade))
SyntaxError: Non-ASCII character '\xc3' in file /home/fernando/Development/Learning/python-learning/python2-alura/inicio on line 3, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
Alguém sabe como solucionar?