The problem is that you typed an actual '£' into your program text. The compiler is complaining
because, absent an explicit encoding declaration, it expects the text to be ascii.
I think there are two ways to solve this:
- write the string with '\xc2' instead of '£'; it has the same meaning
- put
I am trying to use a program that usea s '£' symbolon
the pygame screen and I get this message :-
'sys:1: DeprecationWarning: Non-ASCII character '\xc2'
in file birdgame29e.py on line 88, but no encoding
declared; see http://www.python.org/peps/pep-0263.html
for details
line 86
'
Now I did look th