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
- Jurassic World Rebirth July 02, 2025
- Vintage Adverts July 02, 2025
- Ready Player One June 29, 2025