Skip to content

Instantly share code, notes, and snippets.

@flfelipelopes
Created September 5, 2019 01:08
Show Gist options
  • Save flfelipelopes/7309cfdd5911e728244152fb3027ca09 to your computer and use it in GitHub Desktop.
Save flfelipelopes/7309cfdd5911e728244152fb3027ca09 to your computer and use it in GitHub Desktop.
Responde sobre o tempo que um usuário possui o seu veículo.
tempo = int(input('Quantos anos tem o seu carro? '))
if tempo <= 3:
print('Parabéns! O seu carro está novinho em folha!')
elif tempo <=6:
print('Ehhh, não é novo, mas ainda tem qualidade!')
else:
print('Xiii...Já não está na hora de trocar por um novo!?')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment