I have used following to get number of minutes by passing Milliseconds
def returnTimeString(miliSec):
returnVal = "%d" % ( ((miliSec / 1000) / 60) )
if returnVal == '0':
returnVal = 'N/A'
return returnVal
But I want different way then this to fetch number of minutes by passing Milliseconds