I\'m working on a simple program to tell an individual how long they have been alive.
I know how to get the current date, and get their birthday. The only problem is
import datetime born = datetime.date(2002, 10, 31) today = datetime.date.today() age = today - born print(age.total_seconds())
Output: 463363200.0