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
In case you need to run in both python 2 and python 3, you can use this common syntax (the unused syntax would point to the new one)
try: unichr except NameError: unichr = chr