अजगर में जन्मतिथि से आयु


159

मैं आज की तारीख और जन्मतिथि से अजगर में उम्र कैसे पा सकता हूं? जन्मतिथि एक Django मॉडल में एक DateField से है।


4
जब मानक datetimeमॉड्यूल पर्याप्त नहीं है, तो आप कोशिश कर सकते हैं: labix.org/python-dateutil
Tomasz

1
यह लगभग निश्चित रूप से हल किया गया है:dateutil.relativedelta.relativedelta
विलियम्स

जवाबों:


288

यह अधिक सरल माना जा सकता है कि int (True) 1 है और int (गलत) 0 है:

from datetime import date

def calculate_age(born):
    today = date.today()
    return today.year - born.year - ((today.month, today.day) < (born.month, born.day))

4
एक नाइटपिक: date.today()स्थानीय समय क्षेत्र में वह तिथि लौटाता है जो जन्म स्थान से भिन्न हो सकती है। आपको स्पष्ट रूप से
टाइमज़ोन

10
शायद यह "उम्र" की आपकी परिभाषा पर निर्भर करता है। सभी व्यावहारिक उद्देश्यों के लिए एक जन्मदिन आमतौर पर एक तारीख के रूप में दिया जाता है, न कि समय-अवगत डेटाटाइम (यानी, "जन्म" विवरण याद कर रहा है)। अधिकांश लोग आधी रात के समय पैदा नहीं होते हैं (इसलिए आमतौर पर समय से पहले :-)), और जब एक अलग समय क्षेत्र में, मैं मानूंगा कि ज्यादातर लोग अपने जन्मदिन को स्थानीय समय में मानते हैं (यही मैं करता हूं, मैं 10-12 घंटे आगे रहता हूं मेरे जन्म स्थान का समय)। यदि "जन्म" एक समयक्षेत्र-जागरूक डेटाइम था, तो आप पाइट्ज के अंकगणितीय और सामान्यीकृत () का उपयोग कर सकते हैं - शायद ज्योतिष सॉफ्टवेयर के लिए रुचि के?
डैनी डब्ल्यू। अडैर

2
मैं मानव युग के संदर्भ में पूरी तरह सहमत हूं लेकिन आपके सूत्र का व्यापक संदर्भ में उपयोग किया जा सकता है। हालांकि मैं व्यक्तिगत रूप से एक परिवार की परंपरा के कारण एक घंटे पहले भी अपना जन्मदिन कभी नहीं मनाता हूं और एक प्रोग्रामर होने के नाते समय की गणना करने के लिए यह तुच्छ है कि मैं जहां भी हूं।
jfs

@ पीड: जन्म एक तारीख / तिथि-तिथि है
kjagiello

68
from datetime import date

def calculate_age(born):
    today = date.today()
    try: 
        birthday = born.replace(year=today.year)
    except ValueError: # raised when birth date is February 29 and the current year is not a leap year
        birthday = born.replace(year=today.year, month=born.month+1, day=1)
    if birthday > today:
        return today.year - born.year - 1
    else:
        return today.year - born.year

अद्यतन: डैनी के समाधान का उपयोग करें , यह बेहतर है


2
बस सिद्धांत के रूप में, आपके exceptब्लॉक को केवल एक विशिष्ट अपवाद को पकड़ना चाहिए जिसे उठाया जा सकता है।
डेनिथ

1
@ डैनिथ: अच्छा फोन ... मुझे लगता है कि यह एक है ValueError। अपडेट किया गया।
मपेन

मैं यहां तक ​​जाता हूं कि अपवाद के संदेश का परीक्षण करने के लिए सुनिश्चित करें कि मैं इसकी अपेक्षा कर रहा हूं। ऊपर दिए गए कोड के साथ भी, एक संभावना है कि एक ValueError फेंक दिया जाता है, लेकिन इसका वह ValueError नहीं है जिसकी आप अपेक्षा कर रहे हैं।
रैंडी सीरिंग

+ अपवाद के लिए लेकिन, क्या मेरी कोई समस्या है ? मुझे लगता है कि यह काफी सरल है। def calculate_age(dob)
बृजेश चौहान

1
@ बृजेशचौहान: हां, आपका काम नहीं है। datetime.date(2014, 1, 1)-1 देता है, यह 0. देना चाहिए। today > dobयदि डीओबी भूतकाल में है, तो यह जाँच कर रहा है कि इस वर्ष की शुरुआत में नहीं। datetime.date.today()वर्ष की जानकारी शामिल है, यही वजह है कि मैं इसे अपने समाधान में चालू वर्ष के साथ बदल देता हूं।
मप्र

18
from datetime import date

days_in_year = 365.2425    
age = int((date.today() - birth_date).days / days_in_year)

पायथन 3 में, आप इस पर विभाजन कर सकते हैं datetime.timedelta:

from datetime import date, timedelta

age = (date.today() - birth_date) // timedelta(days=365.2425)

2
हर चौथा वर्ष एक लीप वर्ष होता है, ईवे सौ वर्ष को छोड़कर एक लीप वर्ष नहीं होता है, हर चार सौवें वर्ष को छोड़कर एक लीप वर्ष होता है। try___year = 365.2425
Dan

3
@ दान: जूलियन ( 365.25) और ग्रेगोरियन कैलेंडर वर्ष ( 365.2425) के बीच का अंतर एक दिन से भी कम है अगर आप 130 साल से कम जीते हैं।
jfs

4
यह कुछ तिथियों के लिए काम नहीं करता है: (date(2017, 3, 1) - date(2004, 3, 1)) / timedelta(days=365.2425)वापस लौटना चाहिए 13, लेकिन यह वापस आ जाता है 12। Unfloored, परिणाम है 12.999582469181433
href_

13

जैसा कि @ [ टॉमाज़ ज़िलिंस्की] ने सुझाव दिया था और @ विलियम्स पाइथन-डेट्यूटिल इसे सिर्फ 5 लाइनों में कर सकते हैं।

from dateutil.relativedelta import *
from datetime import date
today = date.today()
dob = date(1982, 7, 5)
age = relativedelta(today, dob)

>>relativedelta(years=+33, months=+11, days=+16)`

10

सबसे सरल तरीका उपयोग कर रहा है python-dateutil

import datetime

import dateutil

def birthday(date):
    # Get the current date
    now = datetime.datetime.utcnow()
    now = now.date()

    # Get the difference between the current date and the birthday
    age = dateutil.relativedelta.relativedelta(now, date)
    age = age.years

    return age

7
29 फरवरी को जन्मदिन होने पर यह सही तरीके से काम नहीं करता है और आज की तारीख 28 फरवरी है (यह इस तरह कार्य करेगा जैसे कि आज फरवरी 29 है)।
ट्रे हंटर

6
from datetime import date

def age(birth_date):
    today = date.today()
    y = today.year - birth_date.year
    if today.month < birth_date.month or today.month == birth_date.month and today.day < birth_date.day:
        y -= 1
    return y

दिनांक उदाहरण या कुछ obj जैसे, docs.python.org/3/library/datetime.html#datetime.date, टाइपो तय।
1

5

दुर्भाग्य से, आप सिर्फ टाइमडेलटा का उपयोग नहीं कर सकते क्योंकि इसका उपयोग करने वाली सबसे बड़ी इकाई दिन है और लीप वर्ष आपको गणनाओं को अमान्य कर देगा। इसलिए, यदि पिछले वर्ष भरा नहीं है, तो एक वर्ष के बाद समायोजित करें।

from datetime import date
birth_date = date(1980, 5, 26)
years = date.today().year - birth_date.year
if (datetime.now() - birth_date.replace(year=datetime.now().year)).days >= 0:
    age = years
else:
    age = years - 1

युपीडी:

यह समाधान वास्तव में एक अपवाद का कारण बनता है जब फरवरी, 29 खेल में आता है। यहाँ सही जाँच है:

from datetime import date
birth_date = date(1980, 5, 26)
today = date.today()
years = today.year - birth_date.year
if all((x >= y) for x,y in zip(today.timetuple(), birth_date.timetuple()):
   age = years
else:
   age = years - 1

Upd2:

now()एक प्रदर्शन हिट के लिए कई कॉल करना हास्यास्पद है, यह सभी लेकिन बेहद खास मामलों में मायने नहीं रखता है। एक चर का उपयोग करने का वास्तविक कारण डेटा असंगति का जोखिम है।


धन्यवाद, मुझे कुछ परीक्षण करके यह पता चला - और एंडीडॉग के लिंक से मिले समान कोड को समाप्त कर दिया।
ताकवे

3
स्ट्राइक 1: आप datetime.dat के बजाय datetime.datetime का उपयोग कर रहे हैं। स्ट्राइक 2: आपका कोड बदसूरत और अक्षम है। कॉलिंग डेटटाइम .now () तीन बार ?? स्ट्राइक ३: जन्मतिथि २ ९ फरवरी २००४ और आज की तारीख २, फरवरी २०१० को ६ साल की उम्र में लौट जाना चाहिए, न कि मरना "वैल्यूएयर: डे इस महीने की सीमा से बाहर है"। तुम बाहर हो!
जॉन मैकिन

क्षमा करें, आपका "अपडेट" कोड पहले से भी अधिक बारोक और टूट गया है - 29 फरवरी से कुछ नहीं करना है; यह 2009-06-15 से 2010-07-02 जैसे मैनी के सरल मामलों में विफल रहता है ... व्यक्ति स्पष्ट रूप से 1 वर्ष से थोड़ा अधिक का है, लेकिन आप एक वर्ष काटते हैं क्योंकि दिनों (2> = 15) पर परीक्षण विफल हो जाता है। और स्पष्ट रूप से आपने इसका परीक्षण नहीं किया है - इसमें एक सिंटैक्स त्रुटि है।
जॉन माचिन

4

इस परिदृश्य में क्लासिक गोचा का फरवरी के 29 वें दिन पैदा हुए लोगों के साथ क्या करना है। उदाहरण: आपको मतदान करने के लिए 18 वर्ष की आयु होनी चाहिए, कार चलाना, शराब खरीदना, आदि ... यदि आप 2004-02-29 को पैदा हुए हैं, तो पहला दिन क्या है कि आपको ऐसी चीजें करने की अनुमति है: 2022-02 -28, या 2022-03-01? AFAICT, ज्यादातर पहले, लेकिन कुछ हत्यारों के बाद कह सकते हैं।

यहाँ उस दिन पैदा हुई जनसंख्या के 0.068% (लगभग) को पूरा करने वाला कोड दिया गया है:

def age_in_years(from_date, to_date, leap_day_anniversary_Feb28=True):
    age = to_date.year - from_date.year
    try:
        anniversary = from_date.replace(year=to_date.year)
    except ValueError:
        assert from_date.day == 29 and from_date.month == 2
        if leap_day_anniversary_Feb28:
            anniversary = datetime.date(to_date.year, 2, 28)
        else:
            anniversary = datetime.date(to_date.year, 3, 1)
    if to_date < anniversary:
        age -= 1
    return age

if __name__ == "__main__":
    import datetime

    tests = """

    2004  2 28 2010  2 27  5 1
    2004  2 28 2010  2 28  6 1
    2004  2 28 2010  3  1  6 1

    2004  2 29 2010  2 27  5 1
    2004  2 29 2010  2 28  6 1
    2004  2 29 2010  3  1  6 1

    2004  2 29 2012  2 27  7 1
    2004  2 29 2012  2 28  7 1
    2004  2 29 2012  2 29  8 1
    2004  2 29 2012  3  1  8 1

    2004  2 28 2010  2 27  5 0
    2004  2 28 2010  2 28  6 0
    2004  2 28 2010  3  1  6 0

    2004  2 29 2010  2 27  5 0
    2004  2 29 2010  2 28  5 0
    2004  2 29 2010  3  1  6 0

    2004  2 29 2012  2 27  7 0
    2004  2 29 2012  2 28  7 0
    2004  2 29 2012  2 29  8 0
    2004  2 29 2012  3  1  8 0

    """

    for line in tests.splitlines():
        nums = [int(x) for x in line.split()]
        if not nums:
            print
            continue
        datea = datetime.date(*nums[0:3])
        dateb = datetime.date(*nums[3:6])
        expected, anniv = nums[6:8]
        age = age_in_years(datea, dateb, anniv)
        print datea, dateb, anniv, age, expected, age == expected

यहाँ उत्पादन है:

2004-02-28 2010-02-27 1 5 5 True
2004-02-28 2010-02-28 1 6 6 True
2004-02-28 2010-03-01 1 6 6 True

2004-02-29 2010-02-27 1 5 5 True
2004-02-29 2010-02-28 1 6 6 True
2004-02-29 2010-03-01 1 6 6 True

2004-02-29 2012-02-27 1 7 7 True
2004-02-29 2012-02-28 1 7 7 True
2004-02-29 2012-02-29 1 8 8 True
2004-02-29 2012-03-01 1 8 8 True

2004-02-28 2010-02-27 0 5 5 True
2004-02-28 2010-02-28 0 6 6 True
2004-02-28 2010-03-01 0 6 6 True

2004-02-29 2010-02-27 0 5 5 True
2004-02-29 2010-02-28 0 5 5 True
2004-02-29 2010-03-01 0 6 6 True

2004-02-29 2012-02-27 0 7 7 True
2004-02-29 2012-02-28 0 7 7 True
2004-02-29 2012-02-29 0 8 8 True
2004-02-29 2012-03-01 0 8 8 True

और मैंने हाल ही में सिर्फ लीप सेकंड के बारे में सीखा है ।
बोबोर्ट

3

यदि आप इसे django टेम्प्लेट का उपयोग करके किसी पृष्ठ में प्रिंट करना चाहते हैं, तो निम्नलिखित पर्याप्त हो सकते हैं:

{{ birth_date|timesince }}

4
Django के |timesinceलिए कई वर्षों में एक समय पर गणना करने के लिए उपयोग न करें क्योंकि यह लीप वर्षों के लिए खाता नहीं है और इस प्रकार गलत परिणाम देता है। इस पर अधिक जानकारी के लिए Django टिकट # 19210 देखें।
11:13

नहीं पता था कि धन्यवाद।
एनवायज

2

यहां व्यक्ति की उम्र का पता लगाने का एक उपाय है जैसे कि साल या महीने या दिन।

कहते हैं कि एक व्यक्ति की जन्मतिथि 2012-01-17T00: 00: 00 है , इसलिए उसकी आयु 2013-01-16T00: 00: 00 11 महीने होगी

या अगर वह 2012-12-17T00: 00: 00 पर पैदा हुआ है , तो उसकी उम्र 2013-01-12T00: 00: 00 26 दिन होगी

या अगर वह 2000-02-29T00: 00: 00 पर पैदा हुआ है , तो उसकी आयु 2012-02-29T00: 00: 00 की उम्र 12 वर्ष होगी

आपको डेटाटाइम आयात करने की आवश्यकता होगी ।

यहाँ कोड है:

def get_person_age(date_birth, date_today):

"""
At top level there are three possibilities : Age can be in days or months or years.
For age to be in years there are two cases: Year difference is one or Year difference is more than 1
For age to be in months there are two cases: Year difference is 0 or 1
For age to be in days there are 4 possibilities: Year difference is 1(20-dec-2012 - 2-jan-2013),
                                                 Year difference is 0, Months difference is 0 or 1
"""
years_diff = date_today.year - date_birth.year
months_diff = date_today.month - date_birth.month
days_diff = date_today.day - date_birth.day
age_in_days = (date_today - date_birth).days

age = years_diff
age_string = str(age) + " years"

# age can be in months or days.
if years_diff == 0:
    if months_diff == 0:
        age = age_in_days
        age_string = str(age) + " days"
    elif months_diff == 1:
        if days_diff < 0:
            age = age_in_days
            age_string = str(age) + " days"
        else:
            age = months_diff
            age_string = str(age) + " months"
    else:
        if days_diff < 0:
            age = months_diff - 1
        else:
            age = months_diff
        age_string = str(age) + " months"
# age can be in years, months or days.
elif years_diff == 1:
    if months_diff < 0:
        age = months_diff + 12
        age_string = str(age) + " months" 
        if age == 1:
            if days_diff < 0:
                age = age_in_days
                age_string = str(age) + " days" 
        elif days_diff < 0:
            age = age-1
            age_string = str(age) + " months"
    elif months_diff == 0:
        if days_diff < 0:
            age = 11
            age_string = str(age) + " months"
        else:
            age = 1
            age_string = str(age) + " years"
    else:
        age = 1
        age_string = str(age) + " years"
# The age is guaranteed to be in years.
else:
    if months_diff < 0:
        age = years_diff - 1
    elif months_diff == 0:
        if days_diff < 0:
            age = years_diff - 1
        else:
            age = years_diff
    else:
        age = years_diff
    age_string = str(age) + " years"

if age == 1:
    age_string = age_string.replace("years", "year").replace("months", "month").replace("days", "day")

return age_string

उपरोक्त कोड में उपयोग किए गए कुछ अतिरिक्त कार्य हैं:

def get_todays_date():
    """
    This function returns todays date in proper date object format
    """
    return datetime.now()

तथा

def get_date_format(str_date):
"""
This function converts string into date type object
"""
str_date = str_date.split("T")[0]
return datetime.strptime(str_date, "%Y-%m-%d")

अब, हमें get_date_format () को 2000-02-29T00: 00: 00 जैसे स्ट्रिंग्स के साथ खिलाना होगा

यह इसे डेट टाइप ऑब्जेक्ट में बदल देगा जिसे get_person_age (date_birth, date_tods) को फीड करना है

फ़ंक्शन get_person_age (date_birth, date_today) स्ट्रिंग प्रारूप में आयु लौटाएगा।


2

डैनी के समाधान पर विस्तार करना , लेकिन युवा लोगों के लिए उम्र की रिपोर्ट करने के सभी प्रकार के तरीकों (नोट, आज है datetime.date(2015,7,17)):

def calculate_age(born):
    '''
        Converts a date of birth (dob) datetime object to years, always rounding down.
        When the age is 80 years or more, just report that the age is 80 years or more.
        When the age is less than 12 years, rounds down to the nearest half year.
        When the age is less than 2 years, reports age in months, rounded down.
        When the age is less than 6 months, reports the age in weeks, rounded down.
        When the age is less than 2 weeks, reports the age in days.
    '''
    today = datetime.date.today()
    age_in_years = today.year - born.year - ((today.month, today.day) < (born.month, born.day))
    months = (today.month - born.month - (today.day < born.day)) %12
    age = today - born
    age_in_days = age.days
    if age_in_years >= 80:
        return 80, 'years or older'
    if age_in_years >= 12:
        return age_in_years, 'years'
    elif age_in_years >= 2:
        half = 'and a half ' if months > 6 else ''
        return age_in_years, '%syears'%half
    elif months >= 6:
        return months, 'months'
    elif age_in_days >= 14:
        return age_in_days/7, 'weeks'
    else:
        return age_in_days, 'days'

नमूना कोड:

print '%d %s' %calculate_age(datetime.date(1933,6,12)) # >=80 years
print '%d %s' %calculate_age(datetime.date(1963,6,12)) # >=12 years
print '%d %s' %calculate_age(datetime.date(2010,6,19)) # >=2 years
print '%d %s' %calculate_age(datetime.date(2010,11,19)) # >=2 years with half
print '%d %s' %calculate_age(datetime.date(2014,11,19)) # >=6 months
print '%d %s' %calculate_age(datetime.date(2015,6,4)) # >=2 weeks
print '%d %s' %calculate_age(datetime.date(2015,7,11)) # days old

80 years or older
52 years
5 years
4 and a half years
7 months
6 weeks
7 days

1

जैसा कि मैंने सही कार्यान्वयन नहीं देखा था, मैंने इस तरह से मेरा पुनरावर्तन किया ...

    def age_in_years(from_date, to_date=datetime.date.today()):
  if (DEBUG):
    logger.debug("def age_in_years(from_date='%s', to_date='%s')" % (from_date, to_date))

  if (from_date>to_date): # swap when the lower bound is not the lower bound
    logger.debug('Swapping dates ...')
    tmp = from_date
    from_date = to_date
    to_date = tmp

  age_delta = to_date.year - from_date.year
  month_delta = to_date.month - from_date.month
  day_delta = to_date.day - from_date.day

  if (DEBUG):
    logger.debug("Delta's are : %i  / %i / %i " % (age_delta, month_delta, day_delta))

  if (month_delta>0  or (month_delta==0 and day_delta>=0)): 
    return age_delta 

  return (age_delta-1)

29 तारीख को पैदा होने पर 28 फरवरी को "18" होने का अनुमान गलत है। सीमा की अदला-बदली करके इसे छोड़ा जा सकता है ... यह मेरे कोड के लिए एक निजी सुविधा है :)



1
import datetime

आज की तारीख

td=datetime.datetime.now().date() 

आपकी जन्म तिथि

bd=datetime.date(1989,3,15)

तुम्हारा उम्र

age_years=int((td-bd).days /365.25)

0

आयात डेटाइम

def age(date_of_birth):
    if date_of_birth > datetime.date.today().replace(year = date_of_birth.year):
        return datetime.date.today().year - date_of_birth.year - 1
    else:
        return datetime.date.today().year - date_of_birth.year

आपके मामले में:

import datetime

# your model
def age(self):
    if self.birthdate > datetime.date.today().replace(year = self.birthdate.year):
        return datetime.date.today().year - self.birthdate.year - 1
    else:
        return datetime.date.today().year - self.birthdate.year

0

आसान पढ़ने और समझने के लिए थोड़ा संशोधित डैनी का समाधान

    from datetime import date

    def calculate_age(birth_date):
        today = date.today()
        age = today.year - birth_date.year
        full_year_passed = (today.month, today.day) < (birth_date.month, birth_date.day)
        if not full_year_passed:
            age -= 1
        return age
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.