Created
April 25, 2020 10:22
-
-
Save aniruddha27/028c5a3318ec48f3966776290e4175de to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
d1 = datetime.now() | |
print("Today's date :",d1) | |
d2 = d1+timedelta(days=2) | |
print("Date 2 days from today :",d2) | |
d3 = d1+timedelta(weeks=2) | |
print("Date 2 weeks from today :",d3) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment