17 lines
602 B
Python
17 lines
602 B
Python
|
from datetime import datetime
|
||
|
|
||
|
# Assuming you have two datetime objects for the same day in different months
|
||
|
date_jan = datetime(2022, 2, 15, 12, 30, 0)
|
||
|
date_feb = datetime(2022, 2, 15, 8, 45, 0)
|
||
|
|
||
|
# Check if they are the same day
|
||
|
if date_jan.day == date_feb.day and date_jan.month == date_feb.month and date_jan.year == date_feb.year:
|
||
|
print("They are the same day")
|
||
|
else:
|
||
|
print("They are different days")
|
||
|
|
||
|
# Check if they are the same month
|
||
|
if date_jan.month == date_feb.month and date_jan.year == date_feb.year:
|
||
|
print("They are the same month")
|
||
|
else:
|
||
|
print("They are different months")
|