python 判断当前时间是否在某两个时间点之间

python 判断当前时间是否在两个时间点之间

python 判断当前时间是否在某两个时间点之间

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import datetime
import time
timestamp = datetime.datetime.now().time() # Throw away the date information
time.sleep(1)
print (datetime.datetime.now().time() > timestamp) # >>> True (unless you ran this one second before midnight!)

# Or check if a time is between two other times
start = datetime.time(8, 30)
end = datetime.time(15)
print (start <= timestamp <= end) # >>> depends on what time it is

start = datetime.time(17, 30)
end = datetime.time(18, 40)
print (datetime.datetime.now().time() > timestamp)

1
2
3
>>> datetime.datetime.fromtimestamp(1490345439).strftime("%Y-%m-%d %H:%M:%S.%f")
'2017-03-24 16:50:39.000000'
>>> 

本文网址: https://pylist.com/topic/143.html 转摘请注明来源

Suggested Topics

python 使用 magic 从文件内容判断文件类型

使用 python-magic 库可以轻松识别文件的类型,python-magic是libmagic文件类型识别库的python接口。libmagic通过根据预定义的文件类型列表检查它们的头文件来识别文件类型。 ...

python 对中文链接安全转码

当一个链接里包含中文时,有些浏览器并不能正确解析,这就需要首先对中文作安全转码,这里介绍用 python 对中文链接安全转码,...

Leave a Comment