[Tutor] stringing me along

Sean 'Shaleh' Perry shalehperry@attbi.com
Tue, 01 Jan 2002 22:13:02 -0800 (PST)


On 02-Jan-2002 Kirk D Bailey wrote:
> ok, I want to turn a number into a string.
> 
> I would have thought it would be in the STRING module, but shows what
> I know.
> 
> Pickle sounded like it might work, but seems all wrong. I just want
> to take a nice fairly long number and turn it into a string, This
> seems so simply, maybe that's my problem.
> 

what you want is not clear.

Do you want:

>>> cool_thing(100)
>>> print cool_thing
One Hundred

or do you want

>>> cool_thing(100)
>>> print cool_thing
'100'

??