How to calculate number of days from past date in Python?

Question

How to calculate number of days from past date in Python?

Re: How to calculate number of days from past date in Python?

>> birthday = date(1957, 2, 11)
>>> age = now - birthday
>>> age.days
15668