programming-examples/python/Date/Python program to print yesterday, today, tomorrow.py

7 lines
250 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
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)