1
I’m trying to make this code work but I’m not getting it.
Enter the name and year of birth, and return the correct values dps, but I can’t get back the number of years... What is my mistake?
print 'Digite seu nome:'
nome = raw_input()
print 'Digite o seu ano de nascimento:'
ano = raw_input()
def ano_covertido(idade):
ano = raw_input()
ano_covertido = int(ano)
ano_atual = date.today().year
ano_atual - ano
print 'Bem vindo %s' % (nome)
print 'Voce tem %s de idade' % (idade)