摘要: python 实现: s=input() hour_str=str(s.split(":")[0]) # 在00到23之间 min_str=str(s.split(":")[1]) # 在00到59之间 hour=int(hour_str) min=int(min_str) if hour<12 o 阅读全文
posted @ 2024-07-24 16:32 豆豆是只乖狗狗 阅读(5) 评论(0) 推荐(0) 编辑