We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
deftimeConversion(s):# Write your code heretime_split=s.split(':')hours=time_split[0]mins=time_split[1]secs=time_split[2][:-2]if'AM'ins:if'12'inhours:hours='00'else:if'12'notinhours:hours=str(int(hours)+12)return(hours+":"+mins+":"+secs)
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Time Conversion
You are viewing a single comment's thread. Return to all comments →
Python