摘要: # Author kevin_hou def sanitize(time_string): #格式化时间 if '-' in time_string: splitter = '-' elif ':' in time_string: splitter = ':' else: return (time_ 阅读全文
posted @ 2020-09-16 22:32 JRS077 阅读(267) 评论(0) 推荐(0)
摘要: # Author kevin_hou def sanitize(time_string): #将时间格式化为统一字符串格式 if '-' in time_string: splitter = '-' elif ':' in time_string: splitter = ':' else: retu 阅读全文
posted @ 2020-09-16 19:46 JRS077 阅读(128) 评论(0) 推荐(0)
摘要: # Author kevin_hou def sanitize(time_string): #将时间格式化为统一字符串格式 if '-' in time_string: splitter = '-' elif ':' in time_string: splitter = ':' else: retu 阅读全文
posted @ 2020-09-16 19:06 JRS077 阅读(127) 评论(0) 推荐(0)