“Python calcule la edad a partir de la fecha de nacimiento” Código de respuesta

Python calcule la edad a partir de la fecha de nacimiento

from datetime import date

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

Calculadora de edad en Python

import datetime 
Year_of_birth = int(input("In which year you took birth:- "))
current_year = datetime.datetime.now().year
Current_age = current_year - Year_of_birth
print("Your current age is ",Current_age)
Programmer of empires

Cómo encontrar la edad actual desde la fecha de nacimiento en Python

today_date = datetime.datetime.now()
dob = datetime.datetime(1982, 5, 20)
print(today_date - dob)
Programmer of empires

Python calcule la edad a partir de la fecha de nacimiento

#Python Calculate Age from date of birth:

from datetime import date

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

Calculadora de edad en Python


from datetime import date

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

Perfect Pelican

Cómo calcular la edad a partir de la fecha de nacimiento en Python

SELECT DATEDIFF (
	year, DOB, getdate()) + CASE 
      WHEN (DATEADD(year,DATEDIFF(year, DOB, getdate()) , DOB) > getdate())
      THEN - 1 
      ELSE 0
END
)
Clumsy Caracal

Respuestas similares a “Python calcule la edad a partir de la fecha de nacimiento”

Preguntas similares a “Python calcule la edad a partir de la fecha de nacimiento”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código