Harlin Seritt wrote: > I would like to take milliseconds and convert it to a more > human-readable format like: > > 4 days 20 hours 10 minutes 35 seconds > > Is there something in the time module that can do this? I havent been > able to find anything that would do it.
The datetime module has something like that: >>> d = datetime.timedelta(milliseconds=418235000) >>> print d 4 days, 20:10:35 -- http://mail.python.org/mailman/listinfo/python-list