From 3292de04d18149b111f3fea51767657adec7c2ba Mon Sep 17 00:00:00 2001 From: lightdarkmaster Date: Mon, 15 Sep 2025 13:04:50 +0800 Subject: [PATCH 1/2] Initial Try --- 03_Day_Operators/day-3.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/03_Day_Operators/day-3.py b/03_Day_Operators/day-3.py index b14028857..dfae716fc 100644 --- a/03_Day_Operators/day-3.py +++ b/03_Day_Operators/day-3.py @@ -121,4 +121,8 @@ print(not True) # False - Negation, the not operator turns true to false print(not False) # True print(not not True) # True -print(not not False) # False \ No newline at end of file +print(not not False) # False + + +sample = 3; +print(sample ** sample); \ No newline at end of file From f676d5e5855278ba6cab7b17dddfcc03371c7b20 Mon Sep 17 00:00:00 2001 From: darkMasterv <79690406+lightdarkmaster@users.noreply.github.com> Date: Sat, 11 Oct 2025 10:39:21 +0800 Subject: [PATCH 2/2] Day 03 Progress --- 03_Day_Operators/day-3.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/03_Day_Operators/day-3.py b/03_Day_Operators/day-3.py index dfae716fc..8d104bbf9 100644 --- a/03_Day_Operators/day-3.py +++ b/03_Day_Operators/day-3.py @@ -125,4 +125,6 @@ sample = 3; -print(sample ** sample); \ No newline at end of file +print(sample ** sample); + +print(3 > 2 and 4 > 3) \ No newline at end of file