Created
February 3, 2018 00:57
-
-
Save paulohenriquesn/e603e12846a3e483e8dbbb75cd3efdd5 to your computer and use it in GitHub Desktop.
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
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