“Calculer l'âge Python” Réponses codées

Python calcule l'âge de la date de naissance

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

Calculateur d'âge à 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

Comment trouver l'âge actuel de la date de naissance à Python

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

Python calcule l'âge de la date de naissance

#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

Calculer l'âge 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

Calcul de l'âge à 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

Réponses similaires à “Calculer l'âge Python”

Questions similaires à “Calculer l'âge Python”

Plus de réponses similaires à “Calculer l'âge Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code