Skip to content

Instantly share code, notes, and snippets.

@aniruddha27
Created April 25, 2020 10:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aniruddha27/a811dec901414fdc6be02e99e12c89c8 to your computer and use it in GitHub Desktop.
Save aniruddha27/a811dec901414fdc6be02e99e12c89c8 to your computer and use it in GitHub Desktop.
# timedelta : duration between dates
d1 = datetime(2020,4,23,11,13,10)
d2 = datetime(2021,4,23,12,13,10)
duration = d2-d1
print(type(duration))
duration
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment