“Python oblicz wiek od daty urodzenia” Kod odpowiedzi

Python oblicz wiek od daty urodzenia

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

Kalkulator wiekowy w Pythonie

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

Jak znaleźć obecny wiek od daty urodzenia w Pythonie

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

Python oblicz wiek od daty urodzenia

#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

Kalkulator wiekowy w Pythonie


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

Jak obliczyć wiek od daty urodzenia w Pythonie

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

Odpowiedzi podobne do “Python oblicz wiek od daty urodzenia”

Pytania podobne do “Python oblicz wiek od daty urodzenia”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu