Hi how do I get a £ to print in python 2.4.1.
if I type print "£" in the terminal it works fine
if I try to to that from a script it comes up with a Deprecationwarning no encoding selected and prints (don't know how to get the character to appear on here, but it is a A with a "^" above it) and the £, ie. it prints A£
if I include
# -*- coding: utf-8 -*-
in the script the Deprecation Warning disappears but it still print A£
thanks