Calculating Time
February 22, 2018
Simple script to calculate days between two dates.
from datetime import *
today = date.today()
past_date = date(1994,2,10)
diff = today - past_date
print "That was %d days ago." % diff.days
I don't understand the need for the asterisk on the first line.
Recent Entries
- Entropy November 13, 2025
- The Unquiet Past November 12, 2025
- King Sorrow October 22, 2025