jones.day...@gmail.com writes:

> but how do I replace the "2008, 8, 18" and "2008, 9, 26" with *my* values?  
> I've tried several things (which I can't remember all of) but usually end up 
> with an error like this:

Something like this?

today = date.today()
birthday = date(byear, bmonth, bday)
delta = today - birthday
print(delta.days)


-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to