Last active
December 27, 2015 04:39
-
-
Save nkabir/7268827 to your computer and use it in GitHub Desktop.
relative delta
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
#!/usr/bin/env python | |
import datetime | |
from dateutil.relativedelta import relativedelta | |
beg = datetime.datetime(2010,10,30) | |
rd = relativedelta(months=2) | |
end = beg + rd | |
print beg, end, rd | |
###### Output | |
# 2010-10-30 00:00:00 2010-12-30 00:00:00 relativedelta(months=+2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment