from datetime import datetime line = input() D = datetime.strptime(line, '%b %d %Y %I:%M %p') NY = datetime(D.year+1, 1, 1) dt = NY - D h = dt.days*24 + dt.seconds//3600 m = (dt.seconds // 60) % 60 print(f'{h} houres {m} minutes')
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment