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 高效的list 去重方式

list 去重是编程中经常用到的,python 的去重方式很灵活,下面介绍多种去重方式,并比较得出最高效的方式。...

在 Ubuntu 16.04.6 LTS 系统上安装 Python 3.6.3

自己的阿里云一个 VPS 用的是系统 Ubuntu 16.04.6 LTS,自带的python版本是 `2.7.12` 与 `3.5.2`,有时候要用到 python `3.6`,又不想卸掉原来版本。下面介绍安装 python 3.6.3 的过程,因为版本较旧,遇到一些坑,这里记录一下。...

python 处理命令行参数

Python 完全支持创建在命令行运行的程序,也支持通过命令行参数和短长样式来指定各种选项。...

Leave a Comment