将时间从24小时转换为12小时

时间:2016-02-02 18:06:01

标签: python python-2.7

我需要一些python代码的帮助,我在对象中有一个字符串,我与我创建的变量进行比较以获得24小时的时间。现在我想在if语句下将时间从24小时转换为12小时。

这是字符串:

17:56:26 T:4692  NOTICE: 18:00
17:56:26 T:4692  NOTICE: 18:00
17:56:26 T:4692  NOTICE: 18:00
17:56:26 T:4692  NOTICE: 18:00
17:56:26 T:4692  NOTICE: 18:00
17:56:26 T:4692  NOTICE: 18:00

输出:

17:56:26 T:4692  NOTICE: 6:00
17:56:26 T:4692  NOTICE: 6:00
17:56:26 T:4692  NOTICE: 6:00
17:56:26 T:4692  NOTICE: 6:00
17:56:26 T:4692  NOTICE: 6:00
17:56:26 T:4692  NOTICE: 6:00

以下是代码:

get_stop_time = time.strptime(stop_date, '%Y%m%d%H%M%S')
stop_time = time.strftime('%H:%M', get_stop_time)


if start_time <> current_time < stop_time:
    print "stop_time"
    print stop_time

    #NOW LET CONVERTS TIME TIME FROM 24 HOURS TO 12 HOURS FOR THE STOP_TIME

你能否告诉我一个例子,我如何使用琴弦将时间从24小时转换为12小时?

我应该用它来转换它?

0 个答案:

没有答案