From 058c5b5b57babd8a9ffe7923091fe78c5d8527c7 Mon Sep 17 00:00:00 2001 From: UzmaNaseer Date: Fri, 6 Sep 2024 10:58:54 +0100 Subject: [PATCH] Update 028_logic.py --- 028_logic.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/028_logic.py b/028_logic.py index a861f758..06b7b6c3 100644 --- a/028_logic.py +++ b/028_logic.py @@ -59,8 +59,8 @@ def a_or_b(a, b): print("Function: a_and_b") def a_and_b(a, b): - # return a ?? b - pass + return a and b + check_that_these_are_equal(a_and_b(True, True), True) check_that_these_are_equal(a_and_b(True, False), False)