Is there a way to do time difference with time and not datetime, this is what I would liek to do:
date1 = time.strptime('02/03/2016 16:01:55', '%d/%m/%Y %H:%M:%S')
date2 = time.localtime(time.time())
print date2 - date1
But I am getting only the error:
TypeError: unsupported operand type(s) for -: 'time.struct_time' and 'time.struct_time'