Python可以通過處理時間和日期來實現各種操作。當我們在編寫Python程序時需要經常判斷時間,下面介紹Python中時間判斷的方法:
import datetime now_time = datetime.datetime.now() # 獲取當前時間 # 對當前時間進行判斷 if now_time.hour >= 6 and now_time.hour< 12: print("Good morning!") elif now_time.hour >= 12 and now_time.hour< 18: print("Good afternoon!") elif now_time.hour >= 18 and now_time.hour< 24: print("Good evening!") else: print("Good night!")
上述代碼的作用是判斷當前時間是否在早上、下午、晚上或夜晚,根據時間輸出不同的問候語。
當然,在Python中還有很多其他的時間判斷方法,如判斷日期是否在某個區間內,判斷兩個時間的間隔等等。在實際編寫程序時,需要根據具體需求選用不同的方法。
上一篇vue crud 封裝
下一篇python 時間表達