“Oblicz wiek Python” 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

Oblicz wiek 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))
Talented Tiger

Calculatoion w Pythonie

#AGE CALCULATOION IN PYTHON:

def calculator(age):
    age = (2022 - int(age))
    print("You are "+str(age)+" years Old")
calculator(input("Type your Birth Year: "))

#The easy way to calculate anyones age.Very simple trick.
# Just call a function
YEASIN ARAFAT

Odpowiedzi podobne do “Oblicz wiek Python”

Pytania podobne do “Oblicz wiek Python”

Więcej pokrewnych odpowiedzi na “Oblicz wiek Python” w Python

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

Przeglądaj inne języki kodu