Skip to content

Instantly share code, notes, and snippets.

@flfelipelopes
Created September 5, 2019 01:28
Show Gist options
  • Save flfelipelopes/f41ff54ef08667d7e6d42dc30ad9ce23 to your computer and use it in GitHub Desktop.
Save flfelipelopes/f41ff54ef08667d7e6d42dc30ad9ce23 to your computer and use it in GitHub Desktop.
Saudação especial para pessoas com determinado caractere no nome.
nome = str(input('Qual é o seu nome? ')).strip().upper()
if "F" in nome:
print('Eu sabia! Você tem uma personalidade incrível!')
print('Legal! Tenha um ótimo dia, {}!'.format(nome))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment