Calculating Time
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.
This post is timestamped using Blockchain technology. Verify