Posts by Washington Luis • 36 points
2 posts
-
1
votes2
answers2500
viewsA: How to use a function within another function in python3?
For your code to work: def nome(): name = input('Poderia nos dizer seu nome? ') return name def intro(name): print('Olá {}, seja bem vindo!'.format(name)) name = nome() intro(name) Note that the…
-
1
votes2
answers123
viewsA: ERROR :My code hangs without any error
If Voce posted your code here exactly the way you did there, then the error is in the recoil of the first while true that Voce did. It will endlessly run the next two lines that define the login and…