From ddaaf3b220a010389a54ee78abba6fb60ce46957 Mon Sep 17 00:00:00 2001 From: thusharkiransd <47699737+thusharkiransd@users.noreply.github.com> Date: Thu, 3 Oct 2019 00:51:15 +0530 Subject: [PATCH] modify sum function --- Functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Functions.md b/Functions.md index 22486dd..02a1a80 100644 --- a/Functions.md +++ b/Functions.md @@ -24,7 +24,7 @@ greeting() # ----- function with arguments ----- def sum_two_numbers(num1, num2): total = num1 + num2 - print("{} + {} = {}".format(num1, num2, total)) + print(total) sum_two_numbers(3, 4)