0
I wanted to take the result of the name function input and use inside the intro function, but the way I’m trying, I get just one error.
code:
def nome():
name = str(input('Poderia nos dizer seu nome? '))
return name
def intro():
nome()
print('Olá {}, seja bem vindo!'.format(name))
intro()
And this is the error I got as a result:
I am beginner in the area,I thank you from now on.
Thank you very much, it worked as I wanted. At the moment I have to wait to accept the answer, but as soon as possible I will.
– Laxus Tutoriais