Counting Things
February 13, 2018
This (fairly) simple few lines calculates the days between two dates - in this case, the 4th of July 2020. That's 888 days as of February 13th 2018.
from datetime import *
today = date.today()
future = date(2020,07,20)
diff = future - today
print "There are %s days left." % diff.days
Recent Entries
- Entropy November 13, 2025
- The Unquiet Past November 12, 2025
- King Sorrow October 22, 2025