Created
September 25, 2019 16:04
-
-
Save sonnyksimon/913262874863b5a2b3083ec969b156f4 to your computer and use it in GitHub Desktop.
~/bin/sdrem
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 | |
from __future__ import print_function | |
import datetime | |
if __name__ == '__main__': | |
at = datetime.datetime(1986,11,8) | |
st = datetime.datetime(1997,11,15) | |
sn = datetime.datetime.now() | |
ad = datetime.datetime(2013,1,11) | |
print(str( ad - sn + st - at )) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment