From: Chris M. <ch...@hd...> - 2001-05-16 13:36:31
|
On Wed, May 16, 2001 at 03:06:21PM +0200, Wil...@FI... wrote: > > this might be me just being really dim, but... > > why can't i do... > > cba=123 > abc='abc'+cba cba at this point is an integer and you can't concatenate an integer and a string. Something like this would work: cba=123 abc=abc+str(cba) HTH Chris > > ...to make a string with value 'abc123' `? > what can i do instead ? > > i.e. if a have a variable that always has an integer value, and i want to > append this integer to the end of a string... > > - will > > > ************************************************************************************************** > ** eSafe scanned this email for viruses, vandals and malicious content ** > ************************************************************************************************** > > > _______________________________________________ > Jython-users mailing list > Jyt...@li... > http://lists.sourceforge.net/lists/listinfo/jython-users -- Chris Meyers 7941 Tree Lane Suite 200 Madison WI 53717 |