From 2f3bbabc60bd482a77737b9e795576bd67a6edf7 Mon Sep 17 00:00:00 2001 From: harshal-jagheniya Date: Thu, 12 Mar 2026 16:02:11 +0530 Subject: [PATCH] Update 04_operators.py --- Chapter 2/04_operators.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Chapter 2/04_operators.py b/Chapter 2/04_operators.py index c6c296a..7a56380 100644 --- a/Chapter 2/04_operators.py +++ b/Chapter 2/04_operators.py @@ -35,4 +35,5 @@ print("False and True is ", False and True) print("False and False is ", False and False) -print(not(True)) \ No newline at end of file +# 'not' operator changes 'True' value to 'False' and 'False' to 'True' +print(not(True))