有時(shí)候需要時(shí)間上進(jìn)行比較。需要把字符串時(shí)間轉(zhuǎn)化為datetime格式瞄桨,方便比較恳邀。
安裝:pip install python-dateutil
from dateutil import parser #解析器
from datetime import time
start_time='2022-06-02 15:00:00'
print(type(start_time)) #<class 'str'>
st=parser.parse(start_time)
print(type(st)) #<class 'datetime.datetime'>
print(st.time()>time(20)) #False
print(st.date()) #2022-06-02