Re: converting an int to a string

2007-06-08 Thread John Machin
On Jun 9, 1:40 am, Sean Farrow <[EMAIL PROTECTED]> wrote: > Hi: > I have the folling code: > def parseTime(self, time): > minutes =int(float(time)/60) > seconds =int(float(time)-minutes*60) > minutes =str(minutes) > seconds =st

Re: converting an int to a string

2007-06-08 Thread Paul McGuire
On Jun 8, 10:40 am, Sean Farrow <[EMAIL PROTECTED]> wrote: > Hi: > I have the folling code: > def parseTime(self, time): > minutes =int(float(time)/60) > seconds =int(float(time)-minutes*60) > minutes =str(minutes) > seconds =s

Re: converting an int to a string

2007-06-08 Thread Diez B. Roggisch
Sean Farrow schrieb: > Hi: > I have the folling code: > def parseTime(self, time): > minutes =int(float(time)/60) > seconds =int(float(time)-minutes*60) > minutes =str(minutes) > seconds =str(minutes) > the statements that convert the m