Skip to content

Instantly share code, notes, and snippets.

@klebershimabuku
Last active December 27, 2015 07:59
Show Gist options
  • Save klebershimabuku/7292572 to your computer and use it in GitHub Desktop.
Save klebershimabuku/7292572 to your computer and use it in GitHub Desktop.
playing with python string concatenation
ano_nascimento = input('Digite o seu ano de nascimento:');
ano_atual = input('Digite o ano atual:');
idade = ano_atual - ano_nascimento;
if (idade > 0):
print 'Voce tem %s anos' % idade
else:
print 'Tem certeza que voce ja nasceu.. ?'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment