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 minutes and seconds variables 
str(minutes) and str(seconds) don't seem to be working.
Any idea why?
is there any other way of doing this and perhaps using the $d 
interpolation operator?
sean.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to