Last active
September 15, 2018 22:36
-
-
Save bendavis78/ae0bbd269fc16d81e3c5a042cf82c580 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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