On Tue, May 09, 2006 at 12:17:34PM -0700, James wrote:[color=blue]
> How to recast an integer to a string?
>
> something like
> n = 5
> str = str + char(n)[/color]
Christoph Haas wrote:[color=blue]
> On Tue, May 09, 2006 at 12:17:34PM -0700, James wrote:[color=green]
> > How to recast an integer to a string?
> >
> > something like
> > n = 5
> > str = str + char(n)[/color]
>
> str(n)
>
> Kindly
> Christoph[/color]
In python2,4, I 've got
TypeError: 'str' object is not callable
On 2006-05-09, James <hslee911@yahoo .com> wrote:[color=blue]
> How to recast an integer to a string?[/color]
[color=blue]
> something like
> n = 5
> str = str + char(n)[/color]
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!!
On Tue, May 09, 2006 at 12:34:05PM -0700, James wrote:[color=blue]
>
> Christoph Haas wrote:[color=green]
> > On Tue, May 09, 2006 at 12:17:34PM -0700, James wrote:[color=darkred]
> > > How to recast an integer to a string?
> > >
> > > something like
> > > n = 5
> > > str = str + char(n)[/color]
> >
> > str(n)
> >
> > Kindly
> > Christoph[/color]
>
> In python2,4, I 've got
> TypeError: 'str' object is not callable[/color]
Comment