Created
February 8, 2019 05:16
-
-
Save Ventsislav-Yordanov/ad845f6afd57ef81bb15377a8775e976 to your computer and use it in GitHub Desktop.
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
result = 100 | |
def sum_numbers(number1, number2): | |
result = number1 + number2 | |
return result | |
print(sum_numbers(10, 5)) | |
print(result) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment