How to recast integer to a string

Grant Edwards grante at visi.com
Tue May 9 15:35:18 EDT 2006


On 2006-05-09, James <hslee911 at yahoo.com> wrote:
> How to recast an integer to a string?

> something like
> n = 5
> str = str + char(n)

str = str + chr(5)

-- 
Grant Edwards                   grante             Yow!  I want EARS! I
                                  at               want two ROUND BLACK
                               visi.com            EARS to make me feel warm
                                                   'n secure!!



More information about the Python-list mailing list