Created
May 18, 2020 15:45
-
-
Save MoisesTedeschi/9b6ca264c509cb4394324fbe457962cd to your computer and use it in GitHub Desktop.
Retornos_funcao
This file contains hidden or 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
| def soma(x, y): | |
| result = x + y | |
| return result | |
| print(soma(10, 20)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment