Posts by Cleyton Gonçalves • 36 points
1 post
-
2
votes1
answer27
viewsA: Print a value inside a buged function
The result of your function is not being saved in any variable (line 5). It should be, for example: resultado = funcao_soma(1,5) print("A soma foi {}".format(resultado)) or if you do not want to use…
pythonanswered Cleyton Gonçalves 36