Created
February 21, 2020 07:12
-
-
Save quantra-go-algo/cb4c8632b70f76fc03a85b78b03b5421 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#Shift a date using timedelta | |
my_date = datetime(2018,2,10) | |
#Shift the date by 10 days | |
my_date + timedelta(10) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment