7 lines
250 B
Python
7 lines
250 B
Python
import datetime
|
|
today = datetime.date.today()
|
|
yesterday = today - datetime.timedelta(days = 1)
|
|
tomorrow = today + datetime.timedelta(days = 1)
|
|
print('Yesterday : ',yesterday)
|
|
print('Today : ',today)
|
|
print('Tomorrow : ',tomorrow) |