“Findout Age in Python” Code-Antworten

Python berechnen das Alter ab dem Geburtsdatum

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

So finden Sie das aktuelle Alter ab dem Geburtsdatum in Python

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

Findout Age in Python

#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

Ähnliche Antworten wie “Findout Age in Python”

Fragen ähnlich wie “Findout Age in Python”

Weitere verwandte Antworten zu “Findout Age in Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen