I'm trying to print the £
sign, but I cannot seem to do this using the format() methodology.I'm trying the following:
curr_prefix = u"\xA3"
print "{}".format(curr_prefix)
But I get the following error:
UnicodeEncodeError: 'ascii' codec can't encode character u'\xa3' in position 0: ordinal not in range(128)