![]() |
|
|
+ Search |
![]()
|
May 19th, 2000 00:53
unknown unknown, Andy Lester, Remco Gerlich, Martijn Faassen, Scott
The str() function. a = 1 b = 2 str(a) + ":" + str(b) Or use the % operator, of course. str = "%d:%d" % (a,b)