Skip to content

Instantly share code, notes, and snippets.

@bendavis78
Last active September 15, 2018 22:36
Show Gist options
  • Save bendavis78/ae0bbd269fc16d81e3c5a042cf82c580 to your computer and use it in GitHub Desktop.
Save bendavis78/ae0bbd269fc16d81e3c5a042cf82c580 to your computer and use it in GitHub Desktop.
from datetime import datetime, timedelta
class Person:
def __init__(self, birth_date):
self.birth_date = birth_date
def get_age(self):
return (datetime.now() - self.birth_date) // timedelta(days=365.2425)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment