I\'m trying to convert times from 12 hour times into 24 hour times...
06:35 ## Morning 11:35 ## Morning (If m2 is anywhe
def timeConversion(s): if "PM" in s: s=s.replace("PM"," ") t= s.split(":") if t[0] != '12': t[0]=str(int(t[0])+12) s= (":").join(t) return s else: s = s.replace("AM"," ") t= s.split(":") if t[0] == '12': t[0]='00' s= (":").join(t) return s