要比較兩個日期的大小,可以使用Python中的datetime模塊。你可以使用datetime對象的比較運算符來比較日期的大小,例如:
from datetime import datetime
date1 = datetime(2022, 5, 15)
date2 = datetime(2022, 5, 20)
if date1 < date2:
print("date1 is earlier than date2")
elif date1 > date2:
print("date1 is later than date2")
else:
print("date1 and date2 are the same")
在上面的示例中,我們首先創建兩個datetime對象,然后使用比較運算符來比較它們的大小。如果date1早于date2,則打印"date1 is earlier than date2";如果date1晚于date2,則打印"date1 is later than date2";如果它們相等,則打印"date1 and date2 are the same"。