From 5ff32a19748520957aeb83fa56d39e0d4784dac5 Mon Sep 17 00:00:00 2001 From: syed-mohsin-s Date: Tue, 25 Nov 2025 19:12:02 +0530 Subject: [PATCH] Fix result variable definition in test1.py Updated the parameters for the add_numbers function call. --- test1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test1.py b/test1.py index 9b92ad1..e5ceb31 100644 --- a/test1.py +++ b/test1.py @@ -5,4 +5,4 @@ def add_numbers(a, b): print("Sum is the:", result) # <-- ERROR: 'result' is not defined -result = add_numbers(5, 45) +result = add_numbers(35, 45)