使用当天的当前时间作为python中的整数

时间:2017-06-21 17:24:12

标签: python time clock

我希望创建一个涉及当天当前时间的if语句。例如,我想要的东西,如果它是超过下午2点,然后执行此功能。

我已经尝试过使用时间模块,但我似乎无法找到一种方法来获取一天中没有像日期这样的额外内容的时间。有什么帮助吗?

1 个答案:

答案 0 :(得分:0)

这是一个开始,我认为只要你得到答案就可以使用它。

import time
print(time.strftime("%Y-%m-%d %H:%M"))
print(time.strftime("I can format the date and time in many ways. Time is: %H:%M"))

输出(我跑的时候):

2017-06-21 10:40
I can format the date and time in many ways. Time is: 10:40