Skip to content

Instantly share code, notes, and snippets.

@paulohenriquesn
Created February 3, 2018 00:57
Show Gist options
  • Save paulohenriquesn/e603e12846a3e483e8dbbb75cd3efdd5 to your computer and use it in GitHub Desktop.
Save paulohenriquesn/e603e12846a3e483e8dbbb75cd3efdd5 to your computer and use it in GitHub Desktop.
nome = input("Seu nome: ")
def getinput():
global nome
nome = input('Seu nome novamente')
verify()
def verify():
global nome
if len(nome) <= 3:
print("Seu nome não tem pelo menos 3 chars.")
getinput();
else:
print("Hello {}".format(nome))
verify();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment