Last active
December 27, 2015 07:59
-
-
Save klebershimabuku/7292572 to your computer and use it in GitHub Desktop.
playing with python string concatenation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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