I\'ve been looking through the Python Cookbook (2nd Edition) to learn how to process strings and characters.
I wanted to try converting a number into its
As suggestted by this is a better way to do it for it is compatible for both 2 and 3:
# Python 2 and 3: from builtins import chr assert chr(8364) == '€'
And you may need pip install future incase some error occures.
pip install future