“Calculadora de edad en Python” 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

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

Calcular la edad de pitón

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

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

Respuestas similares a “Calculadora de edad en Python”

Preguntas similares a “Calculadora de edad en Python”

Más respuestas relacionadas con “Calculadora de edad en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código