I wanted to get the result of the input of the function name and use inside the intro function, however the way I'm trying, I get only 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'm a beginner in the area, thank you in advance.