“Calculadora de idade em Python” Respostas de código

Python Calcule a idade desde a data de nascimento

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 idade em 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 a idade desde a data de nascimento

#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

Calcule a idade 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

Calculadora de idade em 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

Respostas semelhantes a “Calculadora de idade em Python”

Perguntas semelhantes a “Calculadora de idade em Python”

Mais respostas relacionadas para “Calculadora de idade em Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código