From d3a0125bf32dd685c7952749a4be5ea1e5bbea87 Mon Sep 17 00:00:00 2001 From: eac Date: Mon, 10 May 2021 18:21:30 -0400 Subject: [PATCH] added function to subtract wrong added function to subtract wrong --- src/python/helloworld.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/python/helloworld.py b/src/python/helloworld.py index 56a1300..b8ef17c 100644 --- a/src/python/helloworld.py +++ b/src/python/helloworld.py @@ -15,5 +15,9 @@ def subtract2Numbers(num1, num2) def add2Numbers(num1,num2): result = num1 + num2 print("addition result: ", result) - + +def subtractNumbers_wrong(num1,num2): + result = num1 - num2 - 1 + print("wrong result: ", result) + #print("hello world")